We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c499d3 commit 23329a2Copy full SHA for 23329a2
.github/actions/build/action.yml
@@ -5,12 +5,15 @@ runs:
5
using: "composite"
6
steps:
7
- name: Install ARM cross-compilation tools
8
+ shell: bash
9
run: sudo apt-get update && sudo apt-get install --assume-yes --no-install-recommends g++-aarch64-linux-gnu
10
11
- name: Setup environment
12
13
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
14
15
- name: Install rust
16
17
run: |
18
rustup toolchain install stable --profile minimal
19
rustup target add aarch64-unknown-linux-gnu
@@ -19,6 +22,7 @@ runs:
22
uses: Swatinem/rust-cache@v2
20
23
21
24
- name: Build
25
26
id: build
27
28
cargo build --release --target aarch64-unknown-linux-gnu
0 commit comments