diff --git a/.tekton/clowder-pull-request.yaml b/.tekton/clowder-pull-request.yaml index 8382f4d7c..820db1d53 100644 --- a/.tekton/clowder-pull-request.yaml +++ b/.tekton/clowder-pull-request.yaml @@ -270,7 +270,7 @@ spec: - name: kustomize-build image: registry.access.redhat.com/ubi8/go-toolset:1.22.7-5.1731464728 workingDir: /var/workdir/source - script: set -xe && dnf install -y go make && make test + script: set -xe && make test volumes: # New volume to store a copy of the source code accessible only to this Task. - name: workdir @@ -322,7 +322,7 @@ spec: secretKeyRef: name: minikube-ssh-key key: MINIKUBE_ROOTDIR - script: set -e && dnf install -y git go jq make openssh-clients python3 && ./ci/konflux_minikube_e2e_tests.sh + script: set -e && ./ci/konflux_minikube_e2e_tests.sh volumes: # New volume to store a copy of the source code accessible only to this Task. - name: workdir diff --git a/.tekton/clowder-push.yaml b/.tekton/clowder-push.yaml index b437cc9da..13fcbffe7 100644 --- a/.tekton/clowder-push.yaml +++ b/.tekton/clowder-push.yaml @@ -260,7 +260,7 @@ spec: - name: kustomize-build image: registry.access.redhat.com/ubi8/go-toolset:1.22.7-5.1731464728 workingDir: /var/workdir/source - script: set -xe && dnf install -y go make && make test + script: set -xe && make test volumes: # New volume to store a copy of the source code accessible only to this Task. - name: workdir @@ -312,7 +312,7 @@ spec: secretKeyRef: name: minikube-ssh-key key: MINIKUBE_ROOTDIR - script: set -e && dnf install -y git go jq make openssh-clients python3 && ./ci/konflux_minikube_e2e_tests.sh + script: set -e && ./ci/konflux_minikube_e2e_tests.sh volumes: # New volume to store a copy of the source code accessible only to this Task. - name: workdir