We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86aeba8 commit e98918aCopy full SHA for e98918a
3 files changed
.cargo/config.toml
@@ -0,0 +1,5 @@
1
+[target.aarch64-unknown-linux-musl]
2
+linker = "aarch64-linux-musl-gcc"
3
+
4
+[target.x86_64-unknown-linux-musl]
5
+linker = "x86_64-linux-musl-gcc"
.github/workflows/test.yaml
@@ -13,6 +13,11 @@ jobs:
13
- name: Install Protobuf Compiler
14
run: sudo apt-get update && sudo apt-get install protobuf-compiler -y
15
16
+ - name: Install Rust Toolchain
17
+ uses: dtolnay/rust-toolchain@stable
18
+ with:
19
+ components: rustfmt, clippy
20
21
- name: Set up cargo cache
22
uses: actions/cache@v4
23
continue-on-error: false
Makefile
@@ -1,5 +1,5 @@
clippy:
- cargo clippy
+ cargo clippy --target=x86_64-unknown-linux-musl --all
all: clippy
cargo build --target=x86_64-unknown-linux-musl --all
0 commit comments