Testing with Jenkins
Some checks failed
Gitea Organization/dotfiles/pipeline/head There was a failure building this commit

This commit is contained in:
Mutzi 2023-02-11 12:22:46 +01:00
parent 77b6e2aba3
commit 0b7af4e3d7

18
Jenkinsfile vendored
View File

@ -1,13 +1,15 @@
pipeline { pipeline {
agent none agent none
stage('Build') { stages {
agent { stage('Build') {
docker { image 'rust:alpine' } agent {
} docker { image 'rust:alpine' }
steps { }
sh 'export' steps {
sh 'cargo --release build' sh 'export'
sh 'ls -la' sh 'cargo --release build'
sh 'ls -la'
}
} }
} }
} }