Mutzi
0b7af4e3d7
Some checks failed
Gitea Organization/dotfiles/pipeline/head There was a failure building this commit
15 lines
295 B
Groovy
15 lines
295 B
Groovy
pipeline {
|
|
agent none
|
|
stages {
|
|
stage('Build') {
|
|
agent {
|
|
docker { image 'rust:alpine' }
|
|
}
|
|
steps {
|
|
sh 'export'
|
|
sh 'cargo --release build'
|
|
sh 'ls -la'
|
|
}
|
|
}
|
|
}
|
|
} |