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