Skip to content

Commit

Permalink
add build.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
brandon-b-miller committed Nov 28, 2023
1 parent facebae commit 46b5f3f
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Copyright (c) 2023, NVIDIA CORPORATION.
name: Build and test

on:
push:
tags:
- 'v*'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-release
cancel-in-progress: true

jobs:
pr-builder:
needs:
- checks
- build-and-test-wheels
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
enable_check_pr_job_dependencies: false
build-and-test-wheels:
uses: ./build_and_test_wheels.yaml
wheel-publish-pynvjitlink:
needs:
- build-and-test-wheels
# Only trigger this step for tags
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
sha: ${{ inputs.sha }}
date: ${{ inputs.date }}
package-name: pynvjitlink-cu12

0 comments on commit 46b5f3f

Please sign in to comment.