diff --git a/ci/jenkins/PublishImages/Jenkinsfile b/ci/jenkins/PublishImages/Jenkinsfile index 3fbb6d07a9341..f200c0323b86c 100644 --- a/ci/jenkins/PublishImages/Jenkinsfile +++ b/ci/jenkins/PublishImages/Jenkinsfile @@ -70,18 +70,19 @@ pipeline { def tekton() { - def ret = sh ( script: """ - cat << EOF | kubectl apply -f - - apiVersion: tekton.dev/v1beta1 - kind: TaskRun - metadata: - name: hello-task-run - namespace: milvus-ci - spec: - taskRef: - name: hello - EOF - """, returnStdout: true) + sh 'echo in tekton' + // def ret = sh ( script: """ + // cat << EOF | kubectl apply -f - + // apiVersion: tekton.dev/v1beta1 + // kind: TaskRun + // metadata: + // name: hello-task-run + // namespace: milvus-ci + // spec: + // taskRef: + // name: hello + // EOF + // """, returnStdout: true) return ret