Skip to content

Commit ec93d81

Browse files
committed
HADOOP-19489. Remove broken Centos 7 C++ precommit checks from CI
1 parent 8337251 commit ec93d81

File tree

1 file changed

+0
-46
lines changed

1 file changed

+0
-46
lines changed

dev-support/Jenkinsfile

Lines changed: 0 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -113,52 +113,6 @@ pipeline {
113113
}
114114
}
115115

116-
// This is an optional stage which runs only when there's a change in
117-
// C++/C++ build/platform.
118-
// This stage serves as a means of cross platform validation, which is
119-
// really needed to ensure that any C++ related/platform change doesn't
120-
// break the Hadoop build on Centos 7.
121-
stage ('precommit-run Centos 7') {
122-
environment {
123-
SOURCEDIR = "${WORKSPACE}/centos-7/src"
124-
PATCHDIR = "${WORKSPACE}/centos-7/out"
125-
DOCKERFILE = "${SOURCEDIR}/dev-support/docker/Dockerfile_centos_7"
126-
IS_OPTIONAL = 1
127-
}
128-
129-
steps {
130-
withCredentials(getGithubCreds()) {
131-
sh '''#!/usr/bin/env bash
132-
133-
chmod u+x "${SOURCEDIR}/dev-support/jenkins.sh"
134-
"${SOURCEDIR}/dev-support/jenkins.sh" run_ci
135-
'''
136-
}
137-
}
138-
139-
post {
140-
// Since this is an optional platform, we want to copy the artifacts
141-
// and archive it only if the build fails, to help with debugging.
142-
failure {
143-
sh '''#!/usr/bin/env bash
144-
145-
cp -Rp "${WORKSPACE}/centos-7/out" "${WORKSPACE}"
146-
'''
147-
archiveArtifacts "out/**"
148-
}
149-
150-
cleanup() {
151-
script {
152-
sh '''#!/usr/bin/env bash
153-
154-
chmod u+x "${SOURCEDIR}/dev-support/jenkins.sh"
155-
"${SOURCEDIR}/dev-support/jenkins.sh" cleanup_ci_proc
156-
'''
157-
}
158-
}
159-
}
160-
}
161-
162116
// This is an optional stage which runs only when there's a change in
163117
// C++/C++ build/platform.
164118
// This stage serves as a means of cross platform validation, which is

0 commit comments

Comments
 (0)