Ajouter 'Jenkinsfile'
Some checks failed
git.nyyu.dev/CGGItemSets/master There was a failure building this commit
Some checks failed
git.nyyu.dev/CGGItemSets/master There was a failure building this commit
This commit is contained in:
parent
fa34717836
commit
7c96fd6bce
20
Jenkinsfile
vendored
Normal file
20
Jenkinsfile
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
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'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user