
pipeline {
  agent none
  options {
    timestamps()
    ansiColor('xterm')
    disableConcurrentBuilds()
    overrideIndexTriggers(false)
  }
  triggers {
    cron('H H * * *')
  }
  stages {
    stage('Testy McTestFace') {
      agent any
      when {
        branch 'master'
      }
      steps {
        sh 'echo hello'
      }
    }
  }
}
