mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-01-05 12:25:19 +00:00
build: Run musl builds in parallel to glibc builds
Run these builds against every PR rather than just master. Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
parent
083189e5a1
commit
176d671609
15
Jenkinsfile
vendored
15
Jenkinsfile
vendored
@ -65,14 +65,25 @@ pipeline{
|
|||||||
sh "scripts/dev_cli.sh tests --integration"
|
sh "scripts/dev_cli.sh tests --integration"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage ('Worker build (musl)') {
|
||||||
|
agent { node { label 'bionic' } }
|
||||||
|
options {
|
||||||
|
timeout(time: 1, unit: 'HOURS')
|
||||||
|
}
|
||||||
|
stages {
|
||||||
|
stage ('Checkout') {
|
||||||
|
steps {
|
||||||
|
checkout scm
|
||||||
|
}
|
||||||
|
}
|
||||||
stage ('Run unit tests for musl') {
|
stage ('Run unit tests for musl') {
|
||||||
when { branch 'master' }
|
|
||||||
steps {
|
steps {
|
||||||
sh "scripts/dev_cli.sh tests --unit --libc musl"
|
sh "scripts/dev_cli.sh tests --unit --libc musl"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage ('Run integration tests for musl') {
|
stage ('Run integration tests for musl') {
|
||||||
when { branch 'master' }
|
|
||||||
steps {
|
steps {
|
||||||
sh "scripts/dev_cli.sh tests --integration --libc musl"
|
sh "scripts/dev_cli.sh tests --integration --libc musl"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user