CGGItemSets/Jenkinsfile

20 lines
484 B
Text
Raw Normal View History

2019-08-08 11:28:31 +02:00
pipeline {
agent { label 'master' }
stages {
stage('sources') {
steps {
checkout scm
}
}
stage('build') {
steps {
2019-08-08 11:32:21 +02:00
sh '~/.cargo/bin/cross build --target x86_64-pc-windows-gnu --release'
2019-08-08 11:28:31 +02:00
}
}
2019-08-08 12:02:52 +02:00
stage('dist') {
steps {
archiveArtifacts artifacts: 'target/x86_64-pc-windows-gnu/release/cggitem_sets.exe'
}
}
2019-08-08 11:28:31 +02:00
}
}