Skip to content

Commit

Permalink
Merge remote-tracking branch 'zsl/build-packages-cpack' into build-pa…
Browse files Browse the repository at this point in the history
…ckages-cpack
  • Loading branch information
milyin committed Oct 22, 2024
2 parents 763b9c5 + b878073 commit ef41798
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,27 +103,26 @@ jobs:

- name: Install build deps
if: ${{ matrix.build.target == 'x86_64-unknown-linux-musl'}}
run: apt install -y musl-gcc
run: sudo apt-get install -y musl-tools

- name: Install build deps
if: ${{ matrix.build.target == 'arm-unknown-linux-gnueabi'}}
run: apt install -y arm-linux-gnueabi-gcc

run: sudo apt-get install -y gcc-arm-linux-gnueabi
- name: Install build deps
if: ${{ matrix.build.target == 'arm-unknown-linux-gnueabihf'}}
run: apt install -y arm-linux-gnueabihf-gcc
run: sudo apt-get install -y gcc-arm-linux-gnueabihf

- name: Install build deps
if: ${{ matrix.build.target == 'armv7-unknown-linux-gnueabihf'}}
run: apt install -y arm-linux-gnueabihf-gcc
run: sudo apt-get install -y gcc-arm-linux-gnueabihf

- name: Install build deps
if: ${{ matrix.build.target == 'aarch64-unknown-linux-gnu'}}
run: apt install -y aarch64-linux-gnu-gcc
run: sudo apt-get install -y gcc-aarch64-linux-gnu

- name: Install build deps
if: ${{ matrix.build.target == 'aarch64-unknown-linux-musl'}}
run: apt install -y aarch64-linux-musl-gcc
run: sudo apt-get install -y musl-tools

# FIXME: not sure what deps are missing on windows
#- name: Install build deps
Expand Down

0 comments on commit ef41798

Please sign in to comment.