summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Jenkinsfile28
-rw-r--r--Makefile2
2 files changed, 13 insertions, 17 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index dcbc8905..4f56bde7 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -152,9 +152,9 @@ pipeline {
}
}
}
- stage('Test ISO') {
+ stage('QEMU') {
parallel {
- stage('Without vyos-configd') {
+ stage('Testcases without vyos-configd') {
when {
expression { fileExists 'build/live-image-amd64.hybrid.iso' }
}
@@ -162,7 +162,7 @@ pipeline {
sh "sudo make test"
}
}
- stage('With vyos-configd') {
+ stage('Testcases with vyos-configd') {
when {
expression { fileExists 'build/live-image-amd64.hybrid.iso' }
}
@@ -170,14 +170,14 @@ pipeline {
sh "sudo make testd"
}
}
- }
- }
- stage('QEMU image') {
- when {
- expression { fileExists 'build/live-image-amd64.hybrid.iso' }
- }
- steps {
- sh "sudo make qemu"
+ stage('Build QEMU image') {
+ when {
+ expression { fileExists 'build/live-image-amd64.hybrid.iso' }
+ }
+ steps {
+ sh "sudo make qemu"
+ }
+ }
}
}
}
@@ -229,11 +229,7 @@ pipeline {
echo 'One way or another, I have finished'
// the 'build' directory got elevated permissions during the build
// cdjust permissions so it can be cleaned up by the regular user
- sh '''
- if [ -d build ]; then
- sudo chmod -R 777 build/
- fi
- '''
+ sh 'sudo make purge'
deleteDir() /* cleanup our workspace */
}
}
diff --git a/Makefile b/Makefile
index 92cd08ec..4f96834a 100644
--- a/Makefile
+++ b/Makefile
@@ -262,4 +262,4 @@ clean:
.PHONY: purge
purge:
- rm -rf build/*
+ rm -rf build packer_build packer_cache \ No newline at end of file