We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3ef29e commit bbb2dc5Copy full SHA for bbb2dc5
Jenkinsfile
@@ -178,6 +178,24 @@ pipeline {
178
echo 'Skipping Kafka Streams archetype test for ARM build'
179
}
180
181
+
182
+ stage('PowerPC') {
183
+ agent { label 'ppc64le' }
184
+ options {
185
+ timeout(time: 2, unit: 'HOURS')
186
+ timestamps()
187
+ }
188
+ environment {
189
+ SCALA_VERSION=2.12
190
191
+ steps {
192
+ doValidation()
193
+ catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
194
+ doTest(env, 'unitTest')
195
196
+ echo 'Skipping Kafka Streams archetype test for PowerPC build'
197
198
199
200
// To avoid excessive Jenkins resource usage, we only run the stages
201
// above at the PR stage. The ones below are executed after changes
0 commit comments