Skip to content

Commit

Permalink
[ci] Ensure focal arm64 builds all have their required dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
marun committed Jun 6, 2024
1 parent 6caa655 commit 916f3bc
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build-linux-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,12 @@ jobs:
runs-on: custom-arm64-focal

steps:
- name: Install build dependencies not available by default on custom-arm64-focal runners
shell: bash
run: |
sudo apt update
sudo apt -y install build-essential
- uses: actions/checkout@v4

- uses: ./.github/actions/setup-go-for-project-v3
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build-ubuntu-arm64-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@ jobs:
runs-on: custom-arm64-focal

steps:
- name: Install build dependencies not available by default on custom-arm64-focal runners
shell: bash
run: |
sudo apt update
sudo apt -y install build-essential
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-go-for-project-v3
- run: go version
Expand Down

0 comments on commit 916f3bc

Please sign in to comment.