From 743ebe2fa64f09bd83924b45a59296fec4e46835 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 5 Aug 2020 17:48:29 +0100 Subject: [PATCH] build: Temporarily disable ARM64 builds The builder is not currently responding to pings. Signed-off-by: Rob Bradford --- Jenkinsfile | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8c1d56994..8e96b4d38 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -67,39 +67,6 @@ pipeline{ } } } - stage ('AArch64 worker build') { - agent { node { label 'bionic-arm64' } } - options { - timeout(time: 1, unit: 'HOURS') - } - stages { - stage ('Checkout') { - steps { - checkout scm - } - } - stage ('Build') { - steps { - 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" - } - } - stage ('Run integration tests') { - steps { - sh "scripts/dev_cli.sh tests --integration" - } - } - } - } stage ('Worker build (musl)') { agent { node { label 'bionic' } } options {