summaryrefslogtreecommitdiff
path: root/build-aux/Jenkinsfile.pr
blob: 82a4d1b1db6095c94b90b09f8f1f7304a10af285 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!groovy
//
// This is here to allow the build to pass.
//
pipeline {

  agent any

  stages {
    stage('Pass') {
      steps {
        echo "Passing..."
      }
    }
  }
}