Files
YTDJ/Jenkinsfile
tfl 44a12924ff
All checks were successful
Gitea/YTDJ/pipeline/head This commit looks good
Added Jenkinsfile
2022-07-08 18:52:16 +02:00

12 lines
152 B
Groovy

pipeline {
agent any
stages {
stage('Do nothing') {
steps {
sh '/bin/true'
}
}
}
}