Skip to content
代码片段 群组 项目
未验证 提交 64c72c2e 编辑于 作者: Jason Gustafson's avatar Jason Gustafson 提交者: GitHub
浏览文件

MINOR: Remove ARM/PowerPC builds from Jenkinsfile (#12380)

Reviewers: Colin P. McCabe <cmccabe@apache.org>, Ismael Juma <ismael@juma.me.uk>
上级 bfd9e6ec
No related branches found
No related tags found
无相关合并请求
......@@ -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
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册