-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add initial check * move pr.yaml * add empty check_style.sh * basic check_style.sh that does nothing * add +x * try adding a wheel-build job * fix spacing * add runs-on * install ctk * add -q for now * switch to apt-get * minor fixes * update package name * add install options * expanding build_wheel.sh * add tests and logging * more test build steps * fix path * Apply suggestions from code review Co-authored-by: Bradley Dice <[email protected]> * fix style * add wheel-build to needs * apt-get -> yum due to switching to centos * fix centos cuda install * set c++11 * remove testing phase for now, will test on downstream jobs instead later * try adding a matrix * Update .github/workflows/pr.yaml Co-authored-by: Bradley Dice <[email protected]> * install python via conda * missed endquote * try adding test steps in separate jobs * fix syntax * switch to * for now * formatting * add missing job * try uploading a directory * update paths * drop 3.12 for now * add matrix to download * +x to test_wheel.sh * expand test_wheel.sh * try reading artifact name * a debugging commit * update wheel install command * missing .. * fix more paths * build in verbose mode * cmake.verbose=True in pyproject.toml * require cuda 12.3 * explicitly install gcc * switch containers, remove extra gcc install * endquote * base image name on python version, dont install python in test container * adjust matrix * install pytest using pip * use gpu runners * install gcc again * enforce compiler versions in cmake * try installing system compilers * set and unset e * start expanding test matrix * do not set e for now * use SCCACHE_S3_NO_CREDENTIALS=1 * use ci-wheel containers to get arm images * get python from the image instead of conda * use inputs.node_type * build on cpu runners * Update .github/workflows/pr.yaml * remove python version from path * separate testing into arm64 and amd64 * add to needs section * use citestwheel test images * skip bad test * Apply suggestions from code review * Update pynvjitlink/tests/test_pynvjitlink.py Co-authored-by: Bradley Dice <[email protected]> * build amd and arm in two separate jobs * don't test ubuntu 18.04 with arm * address reviews * fix cmake * try removing cache again * Revert "try removing cache again" This reverts commit 78b0b41. --------- Co-authored-by: Bradley Dice <[email protected]>
- Loading branch information
1 parent
65e1109
commit c540358
Showing
8 changed files
with
183 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
# Copyright (c) 2023, NVIDIA CORPORATION. | ||
name: pr | ||
|
||
on: | ||
push: | ||
branches: | ||
- "pull-request/[0-9]+" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
pr-builder: | ||
needs: | ||
- checks | ||
- wheel-build-amd64 | ||
- wheel-build-arm64 | ||
- wheel-test-amd64 | ||
- wheel-test-arm64 | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected] | ||
checks: | ||
secrets: inherit | ||
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected] | ||
with: | ||
enable_check_generated_files: false | ||
wheel-build-amd64: | ||
runs-on: linux-amd64-cpu4 | ||
strategy: | ||
matrix: | ||
python-version: ["3.9", "3.10"] | ||
container: | ||
image: "rapidsai/ci-wheel:cuda12.0.1-centos7-py${{ matrix.python-version }}" | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Get PR Info | ||
id: get-pr-info | ||
uses: rapidsai/shared-actions/get-pr-info@main | ||
- name: Run build_wheel.sh | ||
run: ci/build_wheel.sh | ||
- name: Upload Python Wheel | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
path: ./wheel-build | ||
wheel-build-arm64: | ||
runs-on: linux-arm64-cpu4 | ||
strategy: | ||
matrix: | ||
python-version: ["3.9", "3.10"] | ||
container: | ||
image: "rapidsai/ci-wheel:cuda12.0.1-rockylinux8-py${{ matrix.python-version }}" | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Get PR Info | ||
id: get-pr-info | ||
uses: rapidsai/shared-actions/get-pr-info@main | ||
- name: Run build_wheel.sh | ||
run: ci/build_wheel.sh | ||
- name: Upload Python Wheel | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
path: ./wheel-build | ||
wheel-test-amd64: | ||
needs: | ||
- wheel-build-amd64 | ||
runs-on: linux-amd64-gpu-v100-latest-1 | ||
strategy: | ||
matrix: | ||
python-version: ["3.9", "3.10"] | ||
linux-version: ["ubuntu20.04", "ubuntu18.04"] | ||
container: | ||
image: "rapidsai/citestwheel:cuda12.0.1-${{ matrix.linux-version }}-py${{ matrix.python-version }}" | ||
env: | ||
NVIDIA_VISIBLE_DEVICES: ${{ env.NVIDIA_VISIBLE_DEVICES }} | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Get PR Info | ||
id: get-pr-info | ||
uses: rapidsai/shared-actions/get-pr-info@main | ||
- name: Download Python Wheel | ||
uses: actions/download-artifact@v2 | ||
with: | ||
path: ./ | ||
- name: Run test_wheel.sh | ||
run: ci/test_wheel.sh | ||
wheel-test-arm64: | ||
needs: | ||
- wheel-build-arm64 | ||
runs-on: linux-arm64-gpu-a100-latest-1 | ||
strategy: | ||
matrix: | ||
python-version: ["3.9", "3.10"] | ||
container: | ||
image: "rapidsai/citestwheel:cuda12.0.1-ubuntu20.04-py${{ matrix.python-version }}" | ||
env: | ||
NVIDIA_VISIBLE_DEVICES: ${{ env.NVIDIA_VISIBLE_DEVICES }} | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Get PR Info | ||
id: get-pr-info | ||
uses: rapidsai/shared-actions/get-pr-info@main | ||
- name: Download Python Wheel | ||
uses: actions/download-artifact@v2 | ||
with: | ||
path: ./ | ||
- name: run test_wheel.sh | ||
run: ci/test_wheel.sh |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
# Copyright (c) 2023, NVIDIA CORPORATION | ||
|
||
|
||
rapids-logger "Install CUDA Toolkit" | ||
yum update | ||
yum install -y epel-release | ||
yum install -y nvidia-driver-latest-dkms | ||
yum install -y cuda-toolkit-12-3 | ||
|
||
rapids-logger "Check conda environment" | ||
conda list | ||
|
||
rapids-logger "Build wheel" | ||
export SCCACHE_S3_NO_CREDENTIALS=1 | ||
mkdir -p ./wheel-build | ||
pip wheel . --wheel-dir=./wheel-build -vvv |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
# Copyright (c) 2023, NVIDIA CORPORATION | ||
|
||
set -euo pipefail | ||
|
||
pip install pre-commit | ||
|
||
# Run pre-commit checks | ||
pre-commit run --all-files --show-diff-on-failure |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
# Copyright (c) 2023, NVIDIA CORPORATION | ||
|
||
set -e | ||
|
||
rapids-logger "Search artifact directory" | ||
ls ./artifact | ||
|
||
rapids-logger "Install wheel" | ||
pip install --find-links ./artifact pynvjitlink | ||
|
||
rapids-logger "Build Tests" | ||
cd test_binary_generation && make | ||
|
||
rapids-logger "Run Tests" | ||
cd .. | ||
pip install pytest | ||
pytest pynvjitlink/tests |
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
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
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