devops
l_deloff 2023-11-19 14:11:02 +00:00
parent fd4248d722
commit 638dc42a46
1 changed files with 7 additions and 1 deletions

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'
}
}
} }
} }