10
0
openwrt-camera-image/Jenkinsfile

34 lines
885 B
Plaintext
Raw Normal View History

2021-10-27 16:18:18 +00:00
#!/usr/bin/groovy
directory = "openwrt-camera-image"
pipeline {
agent any
stages {
stage("Setup") {
steps {
dir(directory) {
deleteDir()
checkout scm
}
}
}
stage("Build") {
steps {
dir(directory) {
sh "sh script.sh"
}
}
}
2021-10-27 16:22:01 +00:00
stage("Deliver") {
steps {
dir(directory) {
script {
sh "mkdir -p bin/"
2021-10-27 16:28:31 +00:00
sh "cp openwrt-imagebuilder-21.02.1-ath79-generic.Linux-x86_64/bin/targets/ath79/generic/*.bin bin/"
2021-10-27 16:22:01 +00:00
}
archiveArtifacts artifacts: "bin/*", allowEmptyArchive: false, fingerprint: false
}
}
}
2021-10-27 16:18:18 +00:00
}
}