CGGItemSets/Jenkinsfile
nyyu 7c96fd6bce
Some checks failed
git.nyyu.dev/CGGItemSets/master There was a failure building this commit
Ajouter 'Jenkinsfile'
2019-08-08 11:28:31 +02:00

20 lines
No EOL
415 B
Groovy

pipeline {
agent { label 'master' }
stages {
stage('sources') {
steps {
checkout scm
}
}
stage('install') {
steps {
sh 'cargo install cross'
}
}
stage('build') {
steps {
sh 'cross build --target x86_64-pc-windows-gnu --release'
}
}
}
}