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 <robert.bradford@intel.com>
This commit is contained in:
Rob Bradford 2020-09-18 11:10:17 +01:00
parent 66352b100f
commit 036c2e5e45

10
Jenkinsfile vendored
View File

@ -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"