Browse Source

KAFKA-13671: Add ppc64le build stage (#11833)

Reviewers: David Arthur <mumrah@gmail.com>
pull/11861/head
Mickael Maison 3 years ago committed by GitHub
parent
commit
bbb2dc54a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 18
      Jenkinsfile

18
Jenkinsfile vendored

@ -178,6 +178,24 @@ pipeline { @@ -178,6 +178,24 @@ pipeline {
echo 'Skipping Kafka Streams archetype test for ARM build'
}
}
stage('PowerPC') {
agent { label 'ppc64le' }
options {
timeout(time: 2, unit: 'HOURS')
timestamps()
}
environment {
SCALA_VERSION=2.12
}
steps {
doValidation()
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
doTest(env, 'unitTest')
}
echo 'Skipping Kafka Streams archetype test for PowerPC build'
}
}
// To avoid excessive Jenkins resource usage, we only run the stages
// above at the PR stage. The ones below are executed after changes

Loading…
Cancel
Save