Jenkinsfile: Test musl target on AArch64

Signed-off-by: Michael Zhao <michael.zhao@arm.com>
This commit is contained in:
Michael Zhao 2022-03-02 19:46:52 +08:00 committed by Rob Bradford
parent 273098ee99
commit 8d11ba4833

4
Jenkinsfile vendored
View File

@ -94,7 +94,7 @@ pipeline{
} }
stage ('Run unit tests') { stage ('Run unit tests') {
steps { steps {
sh "scripts/dev_cli.sh tests --unit" sh "scripts/dev_cli.sh tests --unit --libc musl"
} }
} }
stage ('Run integration tests') { stage ('Run integration tests') {
@ -103,7 +103,7 @@ pipeline{
} }
steps { steps {
sh "sudo modprobe openvswitch" sh "sudo modprobe openvswitch"
sh "scripts/dev_cli.sh tests --integration" sh "scripts/dev_cli.sh tests --integration --libc musl"
} }
} }
} }