Compare commits

..

1 Commits

Author SHA1 Message Date
Dustin 1b33256805 ci: Begin CI pipeline
mqttdpms/pipeline/head There was a failure building this commit Details
2022-05-22 13:57:50 -05:00
1 changed files with 8 additions and 8 deletions

16
ci/Jenkinsfile vendored
View File

@ -1,6 +1,10 @@
pipeline { pipeline {
agent none agent none
options {
disableConcurrentBuilds()
}
stages { stages {
stage ('Build') { stage ('Build') {
parallel { parallel {
@ -12,13 +16,11 @@ pipeline {
} }
} }
steps { steps {
sh 'cargo build --release' sh '. ci/build.sh'
} }
post { post {
success { success {
dir('target') { archiveArtifacts 'x86_64/mqttdpms'
archiveArtifacts 'release/mqttdpms'
}
} }
} }
} }
@ -31,13 +33,11 @@ pipeline {
} }
} }
steps { steps {
sh 'cargo build --release' sh '. ci/build.sh'
} }
post { post {
success { success {
dir('target') { archiveArtifacts 'aarch64/mqttdpms'
archiveArtifacts 'release/mqttdpms'
}
} }
} }
} }