Skip to content

Commit 6a9084d

Browse files
committed
WIP
1 parent 6806844 commit 6a9084d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.taskcluster.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -199,11 +199,12 @@ tasks:
199199
command:
200200
- "/bin/bash"
201201
- "-cx"
202-
- "git clone --recursive --quiet ${repository} &&
202+
- "rustup target add x86_64-unknown-linux-musl &&
203+
git clone --recursive --quiet ${repository} &&
203204
cd rust-code-analysis &&
204205
git -c advice.detachedHead=false checkout --recurse-submodules ${head_rev} &&
205-
cargo build --all --release &&
206-
cd target/release &&
206+
cargo build --workspace --release --target x86_64-unknown-linux-musl &&
207+
cd target/release/x86_64-unknown-linux-musl &&
207208
strip rust-code-analysis-cli rust-code-analysis-web &&
208209
tar -zvcf /rust-code-analysis-linux-cli-x86_64.tar.gz rust-code-analysis-cli &&
209210
tar -zvcf /rust-code-analysis-linux-web-x86_64.tar.gz rust-code-analysis-web"

0 commit comments

Comments
 (0)