Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 0 additions & 66 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -160,72 +160,6 @@ pipeline {
echo 'Skipping Kafka Streams archetype test for Java 17'
}
}

stage('ARM') {
options {
timestamps()
}
environment {
SCALA_VERSION=2.12
}
stages {
stage('Check ARM Agent') {
agent { label 'arm4' }
options {
timeout(time: 5, unit: 'MINUTES')
}
steps {
echo 'ARM ok'
}
}
stage('Run ARM Build') {
agent { label 'arm4' }
options {
timeout(time: 2, unit: 'HOURS')
}
steps {
doValidation()
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
doTest(env, 'unitTest')
}
echo 'Skipping Kafka Streams archetype test for ARM build'
}
}
}
}

stage('PowerPC') {
options {
timestamps()
}
environment {
SCALA_VERSION=2.12
}
stages {
stage('Check PowerPC Agent') {
agent { label 'ppc64le' }
options {
timeout(time: 5, unit: 'MINUTES')
}
steps {
echo 'PowerPC ok'
}
}
stage('Run PowerPC Build') {
agent { label 'ppc64le' }
options {
timeout(time: 2, unit: 'HOURS')
}
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