dotfiles/Jenkinsfile

13 lines
236 B
Plaintext
Raw Normal View History

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