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