We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42f9ad5 commit 3dc9ec2Copy full SHA for 3dc9ec2
.github/workflows/main.yml
@@ -19,6 +19,9 @@ jobs:
19
- os: ubuntu-latest
20
env:
21
TARGET_TRIPLE: x86_64-pc-windows-gnu
22
+ - os: ubuntu-latest
23
+ env:
24
+ TARGET_TRIPLE: aarch64-unknown-linux-gnu
25
26
steps:
27
- uses: actions/checkout@v2
@@ -49,6 +52,11 @@ jobs:
49
52
sudo apt-get install -y gcc-mingw-w64-x86-64 wine-stable
50
53
rustup target add x86_64-pc-windows-gnu
51
54
55
+ - name: Install AArch64 toolchain and qemu
56
+ if: matrix.os == 'ubuntu-latest' && matrix.env.TARGET_TRIPLE == 'aarch64-unknown-linux-gnu'
57
+ run: |
58
+ sudo apt-get install -y gcc-aarch64-linux-gnu qemu-user
59
+
60
- name: Prepare dependencies
61
run: |
62
git config --global user.email "[email protected]"
0 commit comments