Skip to content

Commit 2fb105a

Browse files
committed
ci: Adds missing dependencies
1 parent 91908a6 commit 2fb105a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/builds-linux.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
packages: ""
1919
- target: arm-unknown-linux-gnueabihf
2020
linker: arm-linux-gnueabihf-gcc
21-
packages: gcc-arm-linux-gnueabihf
21+
packages: libssl-dev gcc-arm-linux-gnueabihf
2222
- target: aarch64-unknown-linux-gnu
2323
linker: aarch64-linux-gnu-gcc
24-
packages: gcc-aarch64-linux-gnu
24+
packages: libssl-dev gcc-aarch64-linux-gnu
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: Checkout
@@ -44,9 +44,12 @@ jobs:
4444
- target: arm-unknown-linux-musleabihf
4545
- target: aarch64-unknown-linux-musl
4646
runs-on: ubuntu-latest
47+
container: rust:alpine
4748
steps:
4849
- name: Checkout
4950
uses: actions/checkout@v4
51+
- name: Install required packages
52+
run: apk add openssl-dev
5053
- name: Adds rust target
5154
run: rustup target add ${{ matrix.target }}
5255
- name: Build

0 commit comments

Comments
 (0)