A repositoory
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

11 行
147 B

  1. pipeline {
  2. agent any
  3. stages {
  4. stage('truestage') {
  5. steps {
  6. echo 'true'
  7. }
  8. }
  9. }
  10. }