ci: AArch64: Add a build stage for musl toolchain

This commit adds required environment configurations to the
`dev_cli.sh` and a Jenkins stage to enable AArch64 binary
building using musl toolchain.

Signed-off-by: Henry Wang <Henry.Wang@arm.com>
This commit is contained in:
Henry Wang
2020-07-10 11:47:30 +08:00
committed by Sebastien Boeuf
parent e81402e76e
commit 5a2ff98917
2 changed files with 6 additions and 1 deletions

5
Jenkinsfile vendored
View File

@@ -83,6 +83,11 @@ pipeline{
sh "scripts/dev_cli.sh build --release"
}
}
stage ('Build for musl') {
steps {
sh "scripts/dev_cli.sh build --release --libc musl"
}
}
stage ('Run unit tests') {
steps {
sh "scripts/dev_cli.sh tests --unit"