Skip to content

Commit

Permalink
Release on tag push.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Nov 22, 2023
1 parent 08b7589 commit c3019b1
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 124 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
# Copyright (c) 2023, NVIDIA CORPORATION.
name: pr
name: Build and test

on:
push:
branches:
- "pull-request/[0-9]+"
tags:
- 'v*'

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

jobs:
Expand Down Expand Up @@ -92,7 +94,7 @@ jobs:
with:
path: ./
- name: Run test_wheel.sh
run: ci/test_wheel.sh
run: ci/test_wheel.sh
wheel-test-arm64:
needs:
- wheel-build-arm64
Expand All @@ -117,4 +119,17 @@ jobs:
with:
path: ./
- name: run test_wheel.sh
run: ci/test_wheel.sh
run: ci/test_wheel.sh
wheel-publish-pynvjitlink:
needs:
- pr-builder
# Only trigger this step for tags
if: startsWith(github.event_name, 'push') && github.event_name == 'push' && startsWith(github.ref, 'refs/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
120 changes: 0 additions & 120 deletions .github/workflows/release.yaml

This file was deleted.

0 comments on commit c3019b1

Please sign in to comment.