From be8c20230c5054400c0e138dec9eb9f08a20643b Mon Sep 17 00:00:00 2001 From: brandon-b-miller Date: Tue, 31 Oct 2023 09:05:32 -0700 Subject: [PATCH] try adding a wheel-build job --- .github/workflows/pr.yaml | 13 +++++++++++++ ci/build_wheel.sh | 2 ++ 2 files changed, 15 insertions(+) create mode 100755 ci/build_wheel.sh diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 1eadadf9..f2ef5a5b 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -21,3 +21,16 @@ jobs: uses: rapidsai/shared-action-workflows/.github/workflows/checks.yaml@branch-23.10 with: enable_check_generated_files: false + wheel-build: + container: + image: "rapidsai/ci-conda:latest" + 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 diff --git a/ci/build_wheel.sh b/ci/build_wheel.sh new file mode 100755 index 00000000..0df0cd54 --- /dev/null +++ b/ci/build_wheel.sh @@ -0,0 +1,2 @@ +#!/bin/bash +# Copyright (c) 2023, NVIDIA CORPORATION