20 lines
No EOL
484 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|
|
} |