#!/usr/bin/env groovy

@Library('apm@current') _

pipeline {
  agent { label 'ubuntu-18 && immutable' }
  environment {
    REPO = "go-ucfg"
    BASE_DIR = "src/github.com/elastic/${env.REPO}"
    JOB_GIT_CREDENTIALS = "f6c7695a-671e-4f4f-a331-acdce44ff9ba"
    PIPELINE_LOG_LEVEL = 'INFO'
  }
  options {
    timeout(time: 1, unit: 'HOURS')
    buildDiscarder(logRotator(numToKeepStr: '20', artifactNumToKeepStr: '20', daysToKeepStr: '30'))
    timestamps()
    ansiColor('xterm')
    disableResume()
    durabilityHint('PERFORMANCE_OPTIMIZED')
    rateLimitBuilds(throttle: [count: 60, durationName: 'hour', userBoost: true])
    quietPeriod(10)
  }
  triggers {
    issueCommentTrigger('(?i)(.*(?:jenkins\\W+)?run\\W+(?:the\\W+)?tests(?:\\W+please)?.*|^\\/test$)')
  }
  stages {
    stage('Checkout') {
      steps {
        deleteDir()
        gitCheckout(basedir: "${BASE_DIR}")
        stash allowEmpty: true, name: 'source', useDefaultExcludes: false
      }
    }
    stage('Check') {
      options { skipDefaultCheckout() }
      steps {
        withGithubNotify(context: 'Check') {
          deleteDir()
          unstash 'source'
          withGoEnv(version: '1.17', pkgs: ['github.com/elastic/go-licenser', 'go.elastic.co/go-licence-detector']){
            dir("${BASE_DIR}"){
              sh(label: '.ci/check.sh', script: '.ci/check.sh')
            }
          }
        }
      }
    }
    stage('Test') {
      failFast false
      matrix {
        agent { label 'ubuntu-18 && immutable' }
        options { skipDefaultCheckout() }
        axes {
          axis {
            name 'GO_VERSION'
            values '1.16', '1.17'
          }
        }
        stages {
          stage('Test') {
            options { skipDefaultCheckout() }
            steps {
              withGithubNotify(context: "Test-${GO_VERSION}") {
                deleteDir()
                unstash 'source'
                withGoEnv(version: "${GO_VERSION}"){
                  dir("${BASE_DIR}"){
                    sh(label: 'test', script: '.ci/test.sh')
                  }
                }
              }
            }
            post {
              always {
                archive "${BASE_DIR}/build/**"
                junit(allowEmptyResults: true, keepLongStdio: true, testResults: "${BASE_DIR}/build/*xml")
              }
            }
          }
        }
      }
    }
  }
  post {
    cleanup {
      notifyBuildResult(prComment: true)
    }
  }
}
