expanding build_wheel.sh #15
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
# 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 | |
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: | |
runs-on: ubuntu-latest | |
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 |