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

14 lines
267 B
Groovy

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