We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cce2765 commit 644040cCopy full SHA for 644040c
1 file changed
.github/workflows/rust.yml
@@ -53,6 +53,13 @@ jobs:
53
vscode_artifact_name: alpine-x64
54
rustflags: "-C linker=rust-lld"
55
56
+ - name: Linux Alpine arm64
57
+ os: ubuntu-22.04
58
+ target: aarch64-unknown-linux-musl
59
+ artifact_name: squawk-linux-musl-arm64
60
+ vscode_artifact_name: alpine-arm64
61
+ rustflags: "-C linker=rust-lld"
62
+
63
- name: Windows x86_64
64
os: windows-latest
65
target: x86_64-pc-windows-msvc
@@ -79,7 +86,7 @@ jobs:
79
86
uses: actions/checkout@v4
80
87
81
88
- name: Update apt repositories
82
- if: matrix.target == 'aarch64-unknown-linux-gnu' || matrix.target == 'aarch64-unknown-linux-gnu'
89
+ if: matrix.target == 'aarch64-unknown-linux-gnu' || matrix.target == 'x86_64-unknown-linux-musl'
83
90
run: sudo apt-get update
84
91
85
92
- name: Install AArch64 target toolchain
0 commit comments