remove Jenkinsfile
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
nyyu 2021-03-20 12:28:17 +01:00
parent b57145f7ff
commit 1988f9f111

20
Jenkinsfile vendored
View file

@ -1,20 +0,0 @@
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'
}
}
}
}