Skip to content

Commit 1105074

Browse files
committed
tmp: setup helm workaround
1 parent f081f7f commit 1105074

File tree

2 files changed

+20
-6
lines changed

2 files changed

+20
-6
lines changed

.github/workflows/ci_e2e.yaml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,16 @@ jobs:
5050
docker build . -t localhost:5001/java-enforcer-sample-site:$SAMPLE_SITE_IMAGE_TAG && \
5151
docker push localhost:5001/java-enforcer-sample-site:$SAMPLE_SITE_IMAGE_TAG
5252
53-
- uses: azure/setup-helm@v4
54-
with:
55-
version: '3.19.0'
53+
# - uses: azure/setup-helm@v4
54+
# with:
55+
# version: '3.19.0'
56+
57+
- name: Setup helm (temp)
58+
run: |
59+
curl -fsSL https://packages.buildkite.com/helm-linux/helm-debian/gpgkey | gpg --dearmor | sudo tee /usr/share/keyrings/helm.gpg > /dev/null
60+
echo "deb [signed-by=/usr/share/keyrings/helm.gpg] https://packages.buildkite.com/helm-linux/helm-debian/any/ any main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
61+
sudo apt-get update
62+
sudo apt-get install helm
5663
5764
- name: Clone helm charts repo - mock-collector
5865
uses: actions/checkout@v5

.github/workflows/fuzzer.yaml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,16 @@ jobs:
5555
docker build . -t localhost:5001/java-enforcer-sample-site:$SAMPLE_SITE_IMAGE_TAG && \
5656
docker push localhost:5001/java-enforcer-sample-site:$SAMPLE_SITE_IMAGE_TAG
5757
58-
- uses: azure/setup-helm@v4
59-
with:
60-
version: '3.19.0'
58+
# - uses: azure/setup-helm@v4
59+
# with:
60+
# version: '3.19.0'
61+
62+
- name: Setup helm (temp)
63+
run: |
64+
curl -fsSL https://packages.buildkite.com/helm-linux/helm-debian/gpgkey | gpg --dearmor | sudo tee /usr/share/keyrings/helm.gpg > /dev/null
65+
echo "deb [signed-by=/usr/share/keyrings/helm.gpg] https://packages.buildkite.com/helm-linux/helm-debian/any/ any main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
66+
sudo apt-get update
67+
sudo apt-get install helm
6168
6269
- name: Clone helm charts repo - mock-collector
6370
uses: actions/checkout@v5

0 commit comments

Comments
 (0)