preparing for Jenkins

This commit is contained in:
2024-07-26 10:48:51 +09:00
parent 46b42b7d17
commit 3d80922d53

11
Jenkinsfile vendored Normal file
View File

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