dotfiles/Jenkinsfile
Mutzi 77b6e2aba3
Some checks failed
Gitea Organization/dotfiles/pipeline/head There was a failure building this commit
Testing with Jenkins
2023-02-11 12:21:44 +01:00

13 lines
236 B
Groovy

pipeline {
agent none
stage('Build') {
agent {
docker { image 'rust:alpine' }
}
steps {
sh 'export'
sh 'cargo --release build'
sh 'ls -la'
}
}
}