Next-generation CI/CD pipelines with RunsOn #34
Workflow file for this run
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: XGBoost CI (Lint) | |
on: [push, pull_request] | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
BRANCH_NAME: >- | |
${{ github.event.pull_request.number && 'PR-' }}${{ github.event.pull_request.number || github.ref_name }} | |
jobs: | |
build-containers: | |
name: Build CI containers | |
env: | |
CONTAINER_ID: xgb-ci.clang_tidy | |
runs-on: | |
- runs-on=${{ github.run_id }} | |
- runner=linux-amd64-cpu | |
steps: | |
# Restart Docker daemon so that it recognizes the ephemeral disks | |
- run: sudo systemctl restart docker | |
- uses: actions/checkout@v4 | |
with: | |
submodules: "true" | |
- name: Build ${{ env.CONTAINER_ID }} | |
run: bash ops/docker_build.sh | |
clang-tidy: | |
name: Run clang-tidy | |
needs: build-containers | |
runs-on: | |
- runs-on=${{ github.run_id }} | |
- runner=linux-amd64-cpu | |
steps: | |
# Restart Docker daemon so that it recognizes the ephemeral disks | |
- run: sudo systemctl restart docker | |
- uses: actions/checkout@v4 | |
with: | |
submodules: "true" | |
- name: Fetch container from cache | |
run: bash ops/docker_build.sh | |
env: | |
CONTAINER_ID: xgb-ci.clang_tidy | |
- run: bash ops/pipeline/run-clang-tidy.sh | |
python-mypy-lint: | |
runs-on: ubuntu-latest | |
name: Type and format checks for the Python package | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
miniforge-variant: Miniforge3 | |
miniforge-version: latest | |
activate-environment: python_lint | |
environment-file: ops/conda_env/python_lint.yml | |
use-mamba: true | |
- name: Display Conda env | |
shell: bash -el {0} | |
run: | | |
conda info | |
conda list | |
- name: Run mypy | |
shell: bash -el {0} | |
run: | | |
python ops/script/lint_python.py --format=0 --type-check=1 --pylint=0 | |
- name: Run formatter | |
shell: bash -el {0} | |
run: | | |
python ops/script/lint_python.py --format=1 --type-check=0 --pylint=0 | |
- name: Run pylint | |
shell: bash -el {0} | |
run: | | |
python ops/script/lint_python.py --format=0 --type-check=0 --pylint=1 | |
cpp-lint: | |
runs-on: ubuntu-latest | |
name: Code linting for C++ | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
architecture: 'x64' | |
- name: Install Python packages | |
run: | | |
python -m pip install wheel setuptools cmakelint cpplint==1.6.1 pylint | |
- name: Run lint | |
run: | | |
python3 ops/script/lint_cpp.py | |
bash ops/script/lint_cmake.sh | |
lintr: | |
runs-on: ubuntu-latest | |
name: Run R linters on Ubuntu | |
env: | |
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- uses: r-lib/actions/setup-r@v2 | |
with: | |
r-version: "release" | |
- name: Cache R packages | |
uses: actions/cache@v4 | |
with: | |
path: ${{ env.R_LIBS_USER }} | |
key: ${{ runner.os }}-r-release-7-${{ hashFiles('R-package/DESCRIPTION') }} | |
restore-keys: ${{ runner.os }}-r-release-7-${{ hashFiles('R-package/DESCRIPTION') }} | |
- name: Install dependencies | |
shell: Rscript {0} | |
run: | | |
source("./R-package/tests/helper_scripts/install_deps.R") | |
- name: Run lintr | |
run: | | |
MAKEFLAGS="-j$(nproc)" R CMD INSTALL R-package/ | |
Rscript ops/script/lint_r.R $(pwd) |