Delete Jenkinsfile

This commit is contained in:
Telesphoreo 2022-05-14 18:09:36 -05:00 committed by GitHub
parent d70bda6ecc
commit 8f35214eb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 17 deletions

17
Jenkinsfile vendored
View File

@ -1,17 +0,0 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
withDockerContainer(image: 'rust:latest', toolName: 'Docker') {
sh 'cargo build --release'
}
}
}
}
post {
always {
archiveArtifacts artifacts: 'target/release/*.exe', followSymlinks: false
}
}
}