mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-02-01 17:35:19 +00:00
Revert "build: Temporarily disable ARM64 builds"
This reverts commit 743ebe2fa64f09bd83924b45a59296fec4e46835. Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
parent
d714cf8131
commit
1c4e8ac5ce
33
Jenkinsfile
vendored
33
Jenkinsfile
vendored
@ -70,6 +70,39 @@ pipeline{
|
||||
}
|
||||
}
|
||||
}
|
||||
stage ('AArch64 worker build') {
|
||||
agent { node { label 'bionic-arm64' } }
|
||||
options {
|
||||
timeout(time: 1, unit: 'HOURS')
|
||||
}
|
||||
stages {
|
||||
stage ('Checkout') {
|
||||
steps {
|
||||
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"
|
||||
}
|
||||
}
|
||||
stage ('Run integration tests') {
|
||||
steps {
|
||||
sh "scripts/dev_cli.sh tests --integration"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
stage ('Worker build (musl)') {
|
||||
agent { node { label 'bionic' } }
|
||||
options {
|
||||
|
Loading…
x
Reference in New Issue
Block a user