From 603445e0a58cd6af55f2c4245a976efa3ef314e2 Mon Sep 17 00:00:00 2001 From: Henry Wang Date: Tue, 30 Jun 2020 08:45:13 +0800 Subject: [PATCH] tests: Add a Jenkins stage for AArch64 integration test This commit adds a Jenkins stage for AArch64 integration test, and the test is carried out using the GNU toolchain. Signed-off-by: Henry Wang --- Jenkinsfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 7e0b412d1..743e63506 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -88,6 +88,11 @@ pipeline{ sh "scripts/dev_cli.sh tests --unit" } } + stage ('Run integration tests') { + steps { + sh "scripts/dev_cli.sh tests --integration" + } + } } } stage ('Worker build (musl)') {