Skip to content

Commit

Permalink
add more deps
Browse files Browse the repository at this point in the history
  • Loading branch information
sslivkoff committed Jan 29, 2024
1 parent e9eb52f commit 097d28d
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
name: Build on ${{ matrix.os }} for ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
Expand All @@ -26,7 +27,6 @@ jobs:
arch: amd64
target: x86_64-pc-windows-msvc


steps:
- name: Checkout Repository
uses: actions/checkout@v2
Expand All @@ -42,6 +42,15 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu
sudo apt-get install -y pkg-config-aarch64-linux-gnu
sudo apt-get install -y libssl-dev:arm64
- name: Set up Environment for Cross-Compilation (ARM64)
if: matrix.target == 'aarch64-unknown-linux-gnu'
run: |
echo "PKG_CONFIG_ALLOW_CROSS=1" >> $GITHUB_ENV
echo "PKG_CONFIG_PATH=/usr/lib/aarch64-linux-gnu/pkgconfig" >> $GITHUB_ENV
echo "OPENSSL_DIR=/usr/lib/aarch64-linux-gnu" >> $GITHUB_ENV
- name: Install Rust
uses: actions-rs/toolchain@v1
Expand Down

0 comments on commit 097d28d

Please sign in to comment.