We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fd6295 commit f4daff0Copy full SHA for f4daff0
.github/workflows/ci.yml
@@ -63,8 +63,15 @@ jobs:
63
- uses: actions-rust-lang/setup-rust-toolchain@v1
64
with:
65
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
71
- run: cargo build --release --target ${{ matrix.rust-target }}
- - run: cargo test --all-features
72
+ - name: Run Tests
73
+ if: matrix.rust-target != 'aarch64-pc-windows-msvc'
74
+ run: cargo test --all-features
75
- name: Upload Build Artifact
76
uses: actions/upload-artifact@v4
77
0 commit comments