dotfiles/Jenkinsfile

15 lines
295 B
Plaintext
Raw Normal View History

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