dotfiles/Jenkinsfile

13 lines
236 B
Plaintext
Raw Normal View History

2023-02-11 12:21:44 +01:00
pipeline {
agent none
stage('Build') {
agent {
docker { image 'rust:alpine' }
}
steps {
sh 'export'
sh 'cargo --release build'
sh 'ls -la'
}
}
}