This commit is contained in:
2023-11-19 14:11:02 +00:00
parent fd4248d722
commit 638dc42a46

8
Jenkinsfile vendored
View File

@@ -1,11 +1,17 @@
pipeline { pipeline {
agent any agent any
stages { stages {
stage('') { stage('error') {
steps { steps {
echo 'KUKUSIKI' echo 'KUKUSIKI'
} }
} }
stage('test') {
steps {
echo 'KUKUSIKI 2'
}
}
} }
} }