Commit 8abbe681 by Administrator

Added Jenkinsfile

parent d42728a4
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'ls'
}
}
stage('222') {
steps {
echo 'dklfjlksfsf'
}
}
stage('333'){
when {
branch 'test'
}
steps{
sh 'pwd'
}
}
stage('Build') {
steps {
sh 'ls'
}
}
stage('222') {
steps {
echo 'dklfjlksfsf'
}
}
stage('test') {
when {
branch 'test'
}
steps {
sh 'pwd'
}
}
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment