* [CI] Migrate to rockylinux8 / manylinux_2_28_x86_64 * Scrub all references to CentOS 7 * Fix * Remove use of yum * Use gcc-10 in cpu * Temporarily disable -Werror * Use GCC 9 for now * Roll back gRPC * Scrub all references to manylinux2014_x86_64 * Revise rename_whl.py to handle no-op rename * Change JDK_VERSION back to 8 * Reviewer's comment * Use GCC 10 * Use Spark 3.5.1, same as in pom.xml * Fix JAR install
21 lines
561 B
Bash
Executable File
21 lines
561 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
source tests/buildkite/conftest.sh
|
|
|
|
echo "--- Build XGBoost R package with CUDA"
|
|
|
|
tests/ci_build/ci_build.sh gpu_build_r_rockylinux8 \
|
|
--build-arg CUDA_VERSION_ARG=${CUDA_VERSION} \
|
|
--build-arg R_VERSION_ARG=${R_VERSION} \
|
|
tests/ci_build/build_r_pkg_with_cuda.sh \
|
|
${BUILDKITE_COMMIT}
|
|
|
|
if [[ ($is_pull_request == 0) && ($is_release_branch == 1) ]]
|
|
then
|
|
echo "--- Upload R tarball"
|
|
aws s3 cp xgboost_r_gpu_linux_*.tar.gz s3://xgboost-nightly-builds/${BRANCH_NAME}/ \
|
|
--acl public-read --no-progress
|
|
fi
|