Skip to content

Commit f4daff0

Browse files
committed
install cross compiling dependencies
1 parent 2fd6295 commit f4daff0

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,15 @@ jobs:
6363
- uses: actions-rust-lang/setup-rust-toolchain@v1
6464
with:
6565
target: ${{ matrix.rust-target }}
66+
- name: Install Dependencies
67+
if: runner.os == 'Linux'
68+
run: |
69+
sudo apt-get update
70+
sudo apt-get install -y gcc-multilib gcc-aarch64-linux-gnu
6671
- run: cargo build --release --target ${{ matrix.rust-target }}
67-
- run: cargo test --all-features
72+
- name: Run Tests
73+
if: matrix.rust-target != 'aarch64-pc-windows-msvc'
74+
run: cargo test --all-features
6875
- name: Upload Build Artifact
6976
uses: actions/upload-artifact@v4
7077
with:

0 commit comments

Comments
 (0)