[CI] Do not mix up stashed executable built for ARM and x86_64 platforms (#6646)

This commit is contained in:
Philip Hyunsu Cho 2021-01-27 23:57:26 +09:00 committed by GitHub
parent 55ee2bd77f
commit 0ad6e18a2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
Jenkinsfile vendored
View File

@ -190,7 +190,7 @@ def BuildCPUARM64() {
path = ("${BRANCH_NAME}" == 'master') ? '' : "${BRANCH_NAME}/"
s3Upload bucket: 'xgboost-nightly-builds', path: path, acl: 'PublicRead', workingDir: 'python-package/dist', includePathPattern:'**/*.whl'
}
stash name: 'xgboost_cli', includes: 'xgboost'
stash name: 'xgboost_cli_arm64', includes: 'xgboost'
deleteDir()
}
}
@ -339,7 +339,7 @@ def TestPythonCPUARM64() {
node('linux && arm64') {
unstash name: "xgboost_whl_arm64_cpu"
unstash name: 'srcs'
unstash name: 'xgboost_cli'
unstash name: 'xgboost_cli_arm64'
echo "Test Python CPU ARM64"
def container_type = "aarch64"
def docker_binary = "docker"