#!/usr/bin/env groovy

pipeline {
  agent any
  options {
    timestamps()
    ansiColor('xterm')
    quietPeriod(30)
  }
  stages {
    stage("run integration tests") {
      steps {
        sh './run_integ_tests.sh'
      }
    }
  }
}
