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

2
Jenkinsfile vendored
View File

@ -1,5 +1,6 @@
pipeline { pipeline {
agent none agent none
stages {
stage('Build') { stage('Build') {
agent { agent {
docker { image 'rust:alpine' } docker { image 'rust:alpine' }
@ -10,4 +11,5 @@ pipeline {
sh 'ls -la' sh 'ls -la'
} }
} }
}
} }