浏览代码

Added Jenkinsfile

admin 2 年之前
父节点
当前提交
af3b1f57c5
共有 1 个文件被更改,包括 11 次插入0 次删除
  1. 11 0
      Jenkinsfile

+ 11 - 0
Jenkinsfile

@ -0,0 +1,11 @@
1
pipeline {
2
  agent any
3
  stages {
4
    stage('error') {
5
      steps {
6
        echo 'Hello World'
7
      }
8
    }
9
10
  }
11
}