Skip to content

Commit 32110b0

Browse files
Generated commit to update templated files based on rev ee4e418 in stackabletech/operator-templating repo. (#603)
Triggered by: Manual run triggered by: Maleware with message [ubicloud arm-runner for operators]
1 parent 2ffdca4 commit 32110b0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.actionlint.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
self-hosted-runner:
3-
# BuildJet machines we are using
3+
# Ubicloud machines we are using
44
labels:
5-
- buildjet-2vcpu-ubuntu-2204-arm
6-
- buildjet-4vcpu-ubuntu-2204-arm
5+
- ubicloud-standard-8-arm

.github/workflows/build.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ jobs:
308308
- select_helm_repo
309309
strategy:
310310
matrix:
311-
runner: ["ubuntu-latest", "buildjet-2vcpu-ubuntu-2204-arm"]
311+
runner: ["ubuntu-latest", "ubicloud-standard-8-arm"]
312312
runs-on: ${{ matrix.runner }}
313313
permissions:
314314
id-token: write
@@ -356,13 +356,14 @@ jobs:
356356
uses: anchore/sbom-action/download-syft@e8d2a6937ecead383dfe75190d104edd1f9c5751 # v0.16.0
357357
- name: Build Docker image and Helm chart
358358
run: |
359-
# Installing helm on BuildJet only
359+
# Installing helm and yq on ubicloud-standard-8-arm only
360360
if [ "$(arch)" = "aarch64" ]; then
361361
curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | sudo tee /usr/share/keyrings/helm.gpg > /dev/null
362-
sudo apt-get -y install apt-transport-https --yes
362+
sudo apt-get -y install apt-transport-https
363363
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/helm.gpg] https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
364364
sudo apt-get -y update
365365
sudo apt-get -y install helm
366+
sudo wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_arm64 -O /usr/bin/yq && sudo chmod +x /usr/bin/yq
366367
fi
367368
368369
make -e build

0 commit comments

Comments
 (0)