Skip to content

Commit

Permalink
KAFKA-13671: Add ppc64le build stage (apache#11833)
Browse files Browse the repository at this point in the history
Reviewers: David Arthur <[email protected]>
  • Loading branch information
mimaison authored Mar 7, 2022
1 parent e3ef29e commit bbb2dc5
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bbb2dc5

Please sign in to comment.