From 036c2e5e45f362409b4bb92c17073ae5d03efe60 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Fri, 18 Sep 2020 11:10:17 +0100 Subject: [PATCH] Jenkinsfile: Remove "Build" steps from Jenkinsfile Build testing of changes happens on GitHub actions and the integration tests will build the binary (with different feature flags) again. So these earlier build operations are just wasted time on the critical path. Signed-off-by: Rob Bradford --- Jenkinsfile | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index cb5d141a7..d248364c0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -63,16 +63,6 @@ pipeline{ 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"