Skip to content

Commit

Permalink
Merge branch 'master' into 537-enable-support-matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
mtojek committed Mar 1, 2021
2 parents df5654e + 256d029 commit ed26c02
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .ci/Jenkinsfile
Expand Up @@ -3,7 +3,7 @@
@Library('apm@current') _

pipeline {
agent { label 'ubuntu && immutable' }
agent { label 'ubuntu-20 && immutable' }
environment {
BASE_DIR="src/github.com/elastic/integrations"
GITHUB_TOKEN_CREDENTIALS = "2a9602aa-ab9f-4e52-baf3-b71ca88469c7"
Expand Down Expand Up @@ -57,7 +57,8 @@ pipeline {
findFiles()?.findAll{ !it.name.endsWith('@tmp') }?.collect{ it.name }?.sort()?.each {
if (isPrAffected(it)) {
integrations[it] = {
node('ubuntu && immutable') {
sleep(randomNumber(min: 1, max: 5))
node('ubuntu-20 && immutable') {
stage("${it}: check") {
deleteDir()
gitCheckout(basedir: "${BASE_DIR}")
Expand Down

0 comments on commit ed26c02

Please sign in to comment.