Skip to content

Commit

Permalink
Add missing dependencies to build scripts (#759)
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierCazade authored Sep 8, 2024
1 parent 27434da commit a975f98
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,12 @@ spec:
- name: update-downstream
taskSpec:
steps:
- image: ubuntu
- image: fedora
script: |
#!/usr/bin/env bash
echo "Starting update-downstream task"
cd workspace/source/source
dnf install -y python3-ruamel-yaml-clib
COMMIT={{revision}} ./hack/update-build.sh
runAfter:
- clone-repository
Expand Down
3 changes: 2 additions & 1 deletion .tekton/network-observability-operator-bundle-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -183,11 +183,12 @@ spec:
- name: update-downstream
taskSpec:
steps:
- image: ubuntu
- image: fedora
script: |
#!/usr/bin/env bash
echo "Starting update-downstream task"
cd workspace/source/source
dnf install -y python3-ruamel-yaml-clib
COMMIT={{revision}} ./hack/update-build.sh
runAfter:
- clone-repository
Expand Down
3 changes: 2 additions & 1 deletion .tekton/network-observability-operator-fbc-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -175,11 +175,12 @@ spec:
- name: update-downstream
taskSpec:
steps:
- image: ubuntu
- image: fedora
script: |
#!/usr/bin/env bash
echo "Starting update-downstream task"
cd workspace/source/source
dnf install -y python3-ruamel-yaml-clib
COMMIT={{revision}} ./hack/update-build.sh
runAfter:
- clone-repository
Expand Down
3 changes: 2 additions & 1 deletion .tekton/network-observability-operator-fbc-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -172,11 +172,12 @@ spec:
- name: update-downstream
taskSpec:
steps:
- image: ubuntu
- image: fedora
script: |
#!/usr/bin/env bash
echo "Starting update-downstream task"
cd workspace/source/source
dnf install -y python3-ruamel-yaml-clib
COMMIT={{revision}} ./hack/update-build.sh
runAfter:
- clone-repository
Expand Down
3 changes: 2 additions & 1 deletion .tekton/network-observability-operator-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,12 @@ spec:
- name: update-downstream
taskSpec:
steps:
- image: ubuntu
- image: fedora
script: |
#!/usr/bin/env bash
echo "Starting update-downstream task"
cd workspace/source/source
dnf install -y python3-ruamel-yaml-clib
COMMIT={{revision}} ./hack/update-build.sh
runAfter:
- clone-repository
Expand Down
3 changes: 2 additions & 1 deletion .tekton/network-observability-operator-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -183,11 +183,12 @@ spec:
- name: update-downstream
taskSpec:
steps:
- image: ubuntu
- image: fedora
script: |
#!/usr/bin/env bash
echo "Starting update-downstream task"
cd workspace/source/source
dnf install -y python3-ruamel-yaml-clib
COMMIT={{revision}} ./hack/update-build.sh
runAfter:
- clone-repository
Expand Down

0 comments on commit a975f98

Please sign in to comment.