nyyu
687b97b6b2
Some checks failed
git.nyyu.dev/CGGItemSets/master There was a failure building this commit
20 lines
No EOL
428 B
Groovy
20 lines
No EOL
428 B
Groovy
pipeline {
|
|
agent { label 'master' }
|
|
stages {
|
|
stage('sources') {
|
|
steps {
|
|
checkout scm
|
|
}
|
|
}
|
|
stage('install') {
|
|
steps {
|
|
sh 'cargo install cross'
|
|
}
|
|
}
|
|
stage('build') {
|
|
steps {
|
|
sh '~/.cargo/bin/cross build --target x86_64-pc-windows-gnu --release'
|
|
}
|
|
}
|
|
}
|
|
} |