Added Jenkinsfile
All checks were successful
Gitea/YTDJ/pipeline/head This commit looks good

This commit is contained in:
2022-07-08 18:52:16 +02:00
parent 0ceb62b819
commit 44a12924ff

11
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Do nothing') {
steps {
sh '/bin/true'
}
}
}
}