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 9ae20eb commit c6626cfCopy full SHA for c6626cf
.github/workflows/release.yaml
@@ -66,6 +66,12 @@ jobs:
66
67
- run: rustup target add ${{ matrix.target }}
68
69
+ # Cross-compiling for ARM requires installing GCC for aarch64.
70
+ - if: matrix.build == 'linux-arm'
71
+ run: |
72
+ sudo apt-get update
73
+ sudo apt-get install -y gcc-aarch64-linux-gnu
74
+
75
- name: Build
76
run: cargo build --bin yr --profile release-lto --target ${{ matrix.target }}
77
env:
0 commit comments