CGGItemSets/Jenkinsfile
nyyu a5c25f9bbc
All checks were successful
git.nyyu.dev/CGGItemSets/master This commit looks good
Mise à jour de 'Jenkinsfile'
2019-08-08 12:02:52 +02:00

20 lines
No EOL
484 B
Groovy

pipeline {
agent { label 'master' }
stages {
stage('sources') {
steps {
checkout scm
}
}
stage('build') {
steps {
sh '~/.cargo/bin/cross build --target x86_64-pc-windows-gnu --release'
}
}
stage('dist') {
steps {
archiveArtifacts artifacts: 'target/x86_64-pc-windows-gnu/release/cggitem_sets.exe'
}
}
}
}