dotfiles/Jenkinsfile

14 lines
267 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 {
2023-02-11 11:40:40 +00:00
sh 'cargo build --release'
2023-02-11 11:22:46 +00:00
sh 'ls -la'
}
2023-02-11 11:21:44 +00:00
}
}
}