mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-12-22 21:55:20 +00:00
19 lines
410 B
Plaintext
19 lines
410 B
Plaintext
|
stage ("Builds") {
|
||
|
node ('bionic') {
|
||
|
stage ('Checkout') {
|
||
|
checkout scm
|
||
|
}
|
||
|
stage ('Install system packages') {
|
||
|
sh "sudo apt-get -y install build-essential mtools libssl-dev pkg-config"
|
||
|
}
|
||
|
stage ('Install Rust') {
|
||
|
sh "nohup curl https://sh.rustup.rs -sSf | sh -s -- -y"
|
||
|
}
|
||
|
stage ('Run integration tests') {
|
||
|
sh "sudo chmod a+rw /dev/kvm"
|
||
|
sh "scripts/run_integration_tests.sh"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|