Skip to content

Commit

Permalink
Removed dnf installs
Browse files Browse the repository at this point in the history
  • Loading branch information
psav committed Dec 2, 2024
1 parent 2184ec6 commit 54e85e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .tekton/clowder-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .tekton/clowder-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 54e85e4

Please sign in to comment.