From 526cf32a78b0ef63dcbfe301cfab6ca78664deac Mon Sep 17 00:00:00 2001 From: Sebastien Boeuf Date: Wed, 3 Mar 2021 10:17:29 +0100 Subject: [PATCH] Jenkinsfile: Temporarily disable SGX CI Since the SGX server is down for maintenance, all builds are waiting on the node agent to answer, causing all PRs to be blocked. Let's disable temporarily the SGX CI until the server is back up. Signed-off-by: Sebastien Boeuf --- Jenkinsfile | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 37008649e..9126777fa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -103,39 +103,6 @@ pipeline{ } } } - stage ('Worker build SGX') { - agent { node { label 'bionic-sgx' } } - when { branch 'master' } - stages { - stage ('Checkout') { - steps { - checkout scm - } - } - stage ('Run SGX integration tests') { - options { - timeout(time: 1, unit: 'HOURS') - } - steps { - sh "scripts/dev_cli.sh tests --integration-sgx" - } - } - stage ('Run SGX integration tests for musl') { - options { - timeout(time: 1, unit: 'HOURS') - } - steps { - sh "scripts/dev_cli.sh tests --integration-sgx --libc musl" - } - } - } - post { - always { - sh "sudo chown -R jenkins.jenkins ${WORKSPACE}" - deleteDir() - } - } - } stage ('Worker build - Windows guest') { agent { node { label 'groovy-win' } } stages {