Skip to content

Commit

Permalink
ci: Fixes ARM build on musl adding missing perl dependecy
Browse files Browse the repository at this point in the history
  • Loading branch information
sardylan committed Sep 10, 2024
1 parent 19a06a9 commit a7d17d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/builds-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: sudo apt install --assume-yes ${{ matrix.packages }}
- name: Configure cargo linker to use
if: matrix.linker != ''
run: mkdir .cargo && echo -ne '[target.${{ matrix.target }}]\nlinker = "${{ matrix.linker }}"' > .cargo/config
run: mkdir .cargo && echo -ne '[target.${{ matrix.target }}]\nlinker = "${{ matrix.linker }}"' > .cargo/config.toml
- name: Adds rust target
run: rustup target add ${{ matrix.target }}
- name: Build
Expand All @@ -50,7 +50,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Install required packages
run: apk add musl-dev libressl-dev libressl3.8-libcrypto libressl3.8-libssl
run: apk add perl alpine-sdk musl-dev
- name: Adds rust target
run: rustup target add ${{ matrix.target }}
- name: Build
Expand Down

0 comments on commit a7d17d8

Please sign in to comment.