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:
parent
66352b100f
commit
036c2e5e45
1 changed files with 0 additions and 10 deletions
10
Jenkinsfile
vendored
10
Jenkinsfile
vendored
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue