Skip to content

Commit

Permalink
chore(build): fix nightly/all builds to install gcc (#1213)
Browse files Browse the repository at this point in the history
  • Loading branch information
markphelps committed Dec 8, 2022
1 parent 24040db commit 819f4ac
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ jobs:

- name: Install GCC for arm64
run: |
sudo apt-get install gcc-aarch64-linux-gnu
sudo apt-get update && \
sudo apt-get install -y gcc-aarch64-linux-gnu
- name: Install Syft
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ jobs:

- name: Install GCC for arm64
run: |
sudo apt-get install gcc-aarch64-linux-gnu
sudo apt-get update &&
sudo apt-get install -y gcc-aarch64-linux-gnu
- name: Install Syft
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:

- name: Install GCC for arm64
run: |
sudo apt-get install gcc-aarch64-linux-gnu
sudo apt-get update && \
sudo apt-get install -y gcc-aarch64-linux-gnu
- name: Install Syft
run: |
Expand Down

0 comments on commit 819f4ac

Please sign in to comment.