We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6806844 commit 6a9084dCopy full SHA for 6a9084d
.taskcluster.yml
@@ -199,11 +199,12 @@ tasks:
199
command:
200
- "/bin/bash"
201
- "-cx"
202
- - "git clone --recursive --quiet ${repository} &&
+ - "rustup target add x86_64-unknown-linux-musl &&
203
+ git clone --recursive --quiet ${repository} &&
204
cd rust-code-analysis &&
205
git -c advice.detachedHead=false checkout --recurse-submodules ${head_rev} &&
- cargo build --all --release &&
206
- cd target/release &&
+ cargo build --workspace --release --target x86_64-unknown-linux-musl &&
207
+ cd target/release/x86_64-unknown-linux-musl &&
208
strip rust-code-analysis-cli rust-code-analysis-web &&
209
tar -zvcf /rust-code-analysis-linux-cli-x86_64.tar.gz rust-code-analysis-cli &&
210
tar -zvcf /rust-code-analysis-linux-web-x86_64.tar.gz rust-code-analysis-web"
0 commit comments