dotfiles/Jenkinsfile

14 lines
267 B
Plaintext
Raw Normal View History

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