Skip to content

Commit ca331bd

Browse files
committed
Attempt to build an artifact.
1 parent 9278074 commit ca331bd

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/clippy.yaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,16 @@ jobs:
1010

1111
steps:
1212
- uses: actions/checkout@v4
13-
- run: rustup toolchain install stable --profile minimal
13+
- run: rustup toolchain install stable
14+
- run: rustup target add x86_64-unknown-linux-musl
1415
- run: rustup component add clippy
1516
- uses: Swatinem/rust-cache@v2
1617
- run: cargo clippy
18+
- run: |
19+
sudo apt-get update -y
20+
sudo apt-get install musl-tools -y
21+
- run: cargo build --release --target x86_64-unknown-linux-musl
22+
- uses: actions/upload-artifact@v4
23+
with:
24+
name: reg-interface-x86_64-unknown-linux-musl
25+
path: target/x86_64-unknown-linux-musl/release/reg-interface

0 commit comments

Comments
 (0)