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 c4aabc5 commit 77fa788Copy full SHA for 77fa788
.github/workflows/build.yml
@@ -51,6 +51,12 @@ jobs:
51
with:
52
ref: ${{ inputs.version }}
53
path: checkout-tag
54
+ - name: Add target config for arm64 on Linux
55
+ if: ${{ matrix.target.name == 'linux-arm64' }}
56
+ run: |
57
+ sudo apt update && sudo apt install -y gcc-aarch64-linux-gnu
58
+ mkdir -p checkout-tag/.cargo
59
+ echo '\n\n[target.aarch64-unknown-linux-gnu]\nlinker = "aarch64-linux-gnu-gcc"' >> checkout-tag/.cargo/config
60
- name: Build binary
61
uses: houseabsolute/[email protected]
62
0 commit comments