This commit is contained in:
2022-05-14 16:28:39 -05:00
parent 0243621cd3
commit a5b3fa56f1
Vendored
+5 -5
View File
@@ -1,11 +1,11 @@
pipeline {
agent {
docker { image 'rust:latest' }
}
agent any
stages {
stage('Build') {
steps {
sh 'cargo build --release'
withDockerContainer('rust:latest') {
steps {
sh 'cargo build --release'
}
}
post {
always {