dev #9127
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CUDA Version | |
on: | |
push: | |
branches: | |
- master | |
- ci/test | |
# automatically cancel in-progress builds if another commit is pushed | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: ${{ matrix.task }} ${{ matrix.cuda_version }} ${{ matrix.method }} (${{ matrix.linux_version }}, ${{ matrix.compiler }}, Python ${{ matrix.python_version }}) | |
runs-on: [self-hosted, linux] | |
container: | |
image: nvcr.io/nvidia/cuda:${{ matrix.cuda_version }}-devel-${{ matrix.linux_version }} | |
env: | |
CMAKE_BUILD_PARALLEL_LEVEL: 4 | |
COMPILER: ${{ matrix.compiler }} | |
CONDA: /tmp/miniforge | |
DEBIAN_FRONTEND: noninteractive | |
METHOD: ${{ matrix.method }} | |
OS_NAME: linux | |
PYTHON_VERSION: ${{ matrix.python_version }} | |
TASK: ${{ matrix.task }} | |
SKBUILD_STRICT_CONFIG: true | |
options: --gpus all | |
timeout-minutes: 30 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- method: wheel | |
compiler: gcc | |
python_version: "3.10" | |
cuda_version: "12.6.1" | |
linux_version: "ubuntu22.04" | |
task: cuda | |
steps: | |
- name: Install latest git and sudo | |
run: | | |
apt-get update | |
apt-get install --no-install-recommends -y \ | |
ca-certificates \ | |
software-properties-common | |
add-apt-repository ppa:git-core/ppa -y | |
apt-get update | |
apt-get install --no-install-recommends -y \ | |
git \ | |
sudo \ | |
curl | |
- name: Setup and run tests | |
run: | | |
export BUILD_DIRECTORY="$GITHUB_WORKSPACE" | |
export PATH=$CONDA/bin:$PATH | |
# check GPU usage | |
nvidia-smi | |
# build and test | |
rm -rf $GITHUB_WORKSPACE/LightGBM | |
mkdir -p $GITHUB_WORKSPACE/.ci | |
curl --output $GITHUB_WORKSPACE/.ci/setup.sh "https://raw.githubusercontent.com/microsoft/LightGBM/refs/heads/ci/test/.ci/setup.sh" | |
chmod +x $GITHUB_WORKSPACE/.ci/setup.sh | |
$GITHUB_WORKSPACE/.ci/setup.sh || exit 1 |