Skip to content

Commit 60b4a79

Browse files
committedMar 13, 2025·
Add missing dep
1 parent aa496ab commit 60b4a79

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed
 

‎.github/workflows/upload-binaries.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ jobs:
2626
x86_64-unknown-linux-musl,
2727
]
2828
steps:
29+
- name: Install dependencies
30+
run: |
31+
sudo apt update
32+
sudo apt install -y gcc-multilib # required to build for 32-bit arch
33+
sudo apt install -y curl # required for Rust installation
2934
- name: Checkout
3035
uses: actions/checkout@v4
3136
- name: Install Rust
@@ -43,10 +48,6 @@ jobs:
4348
credentials_json: ${{ secrets.GCP_SA_KEY }}
4449
- name: "Set up Cloud SDK"
4550
uses: google-github-actions/setup-gcloud@v2
46-
- name: Install dependencies
47-
run: |
48-
sudo apt update
49-
sudo apt install -y gcc-multilib # required to build for 32-bit arch
5051

5152
- name: Install aarch64-unknown-linux-gnu linker
5253
if: ${{ matrix.target == 'aarch64-unknown-linux-gnu' }}

0 commit comments

Comments
 (0)
Please sign in to comment.