Skip to content

Commit

Permalink
release: 0.0.13
Browse files Browse the repository at this point in the history
Signed-off-by: azjezz <azjezz@protonmail.com>
  • Loading branch information
azjezz committed Dec 21, 2024
1 parent eed3854 commit b9aa4b7
Show file tree
Hide file tree
Showing 4 changed files with 79 additions and 202 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
runs-on: ${{ matrix.job.os }}
needs: crate_metadata
strategy:
fail-fast: true
fail-fast: false
matrix:
job:
# Windows ( MinGW )
Expand Down Expand Up @@ -100,12 +100,17 @@ jobs:
shell: bash
run: echo "VERSION=${{ needs.crate_metadata.outputs.version }}" >> $GITHUB_OUTPUT

- name: install prerequisites
- name: Install Prerequisites
if: contains(matrix.job.os, 'ubuntu')
shell: bash
run: |
sudo apt-get -y update
sudo apt-get remove -y libssl-dev
case ${{ matrix.job.target }} in
arm-unknown-linux-*) sudo apt-get -y update && sudo apt-get -y install gcc-arm-linux-gnueabihf ;;
aarch64-unknown-linux-gnu) sudo apt-get -y update && sudo apt-get -y install gcc-aarch64-linux-gnu ;;
arm-unknown-linux-*) sudo apt-get -y install gcc-arm-linux-gnueabihf ;;
aarch64-unknown-linux-gnu) sudo apt-get -y install gcc-aarch64-linux-gnu ;;
i686-unknown-linux-gnu) sudo apt-get -y install gcc-multilib g++-multilib ;;
arm-unknown-linux-gnueabihf) sudo apt-get -y install gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf qemu-user ;;
esac
- name: install Rust toolchain
Expand Down
Loading

0 comments on commit b9aa4b7

Please sign in to comment.