From 8d11ba4833c6c03385f10e70829eb6881e0542c7 Mon Sep 17 00:00:00 2001 From: Michael Zhao Date: Wed, 2 Mar 2022 19:46:52 +0800 Subject: [PATCH] Jenkinsfile: Test musl target on AArch64 Signed-off-by: Michael Zhao --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 558b2acc0..b7027b374 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -94,7 +94,7 @@ pipeline{ } stage ('Run unit tests') { steps { - sh "scripts/dev_cli.sh tests --unit" + sh "scripts/dev_cli.sh tests --unit --libc musl" } } stage ('Run integration tests') { @@ -103,7 +103,7 @@ pipeline{ } steps { sh "sudo modprobe openvswitch" - sh "scripts/dev_cli.sh tests --integration" + sh "scripts/dev_cli.sh tests --integration --libc musl" } } }