10
0
openwrt-camera-image/Jenkinsfile
Madis Mägi 5d4778e4cd
All checks were successful
gitea-kspace/openwrt-camera-image/pipeline/head This commit looks good
Fix binaries path
2021-10-27 19:28:31 +03:00

34 lines
885 B
Groovy

#!/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"
}
}
}
stage("Deliver") {
steps {
dir(directory) {
script {
sh "mkdir -p bin/"
sh "cp openwrt-imagebuilder-21.02.1-ath79-generic.Linux-x86_64/bin/targets/ath79/generic/*.bin bin/"
}
archiveArtifacts artifacts: "bin/*", allowEmptyArchive: false, fingerprint: false
}
}
}
}
}