A repositoory
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
147 B

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