dotfiles/Jenkinsfile
Mutzi 0b7af4e3d7
Some checks failed
Gitea Organization/dotfiles/pipeline/head There was a failure building this commit
Testing with Jenkins
2023-02-11 12:22:46 +01:00

15 lines
295 B
Groovy

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