Skip to content

Commit bbb2dc5

Browse files
authored
KAFKA-13671: Add ppc64le build stage (#11833)
Reviewers: David Arthur <mumrah@gmail.com>
1 parent e3ef29e commit bbb2dc5

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

Jenkinsfile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,24 @@ pipeline {
178178
echo 'Skipping Kafka Streams archetype test for ARM build'
179179
}
180180
}
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+
}
181199

182200
// To avoid excessive Jenkins resource usage, we only run the stages
183201
// above at the PR stage. The ones below are executed after changes

0 commit comments

Comments
 (0)