Skip to content

Commit

Permalink
Generated commit to update templated files based on rev ee4e418 in st…
Browse files Browse the repository at this point in the history
…ackabletech/operator-templating repo. (#603)

Triggered by:
Manual run triggered by: Maleware with message [ubicloud arm-runner for operators]
  • Loading branch information
stackable-bot authored Jun 21, 2024
1 parent 2ffdca4 commit 32110b0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .actionlint.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
self-hosted-runner:
# BuildJet machines we are using
# Ubicloud machines we are using
labels:
- buildjet-2vcpu-ubuntu-2204-arm
- buildjet-4vcpu-ubuntu-2204-arm
- ubicloud-standard-8-arm
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ jobs:
- select_helm_repo
strategy:
matrix:
runner: ["ubuntu-latest", "buildjet-2vcpu-ubuntu-2204-arm"]
runner: ["ubuntu-latest", "ubicloud-standard-8-arm"]
runs-on: ${{ matrix.runner }}
permissions:
id-token: write
Expand Down Expand Up @@ -356,13 +356,14 @@ jobs:
uses: anchore/sbom-action/download-syft@e8d2a6937ecead383dfe75190d104edd1f9c5751 # v0.16.0
- name: Build Docker image and Helm chart
run: |
# Installing helm on BuildJet only
# Installing helm and yq on ubicloud-standard-8-arm only
if [ "$(arch)" = "aarch64" ]; then
curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | sudo tee /usr/share/keyrings/helm.gpg > /dev/null
sudo apt-get -y install apt-transport-https --yes
sudo apt-get -y install apt-transport-https
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
sudo apt-get -y update
sudo apt-get -y install helm
sudo wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_arm64 -O /usr/bin/yq && sudo chmod +x /usr/bin/yq
fi
make -e build
Expand Down

0 comments on commit 32110b0

Please sign in to comment.