Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
lanluo-nvidia committed Jun 17, 2024
1 parent 052c45c commit 144b1eb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/linux-release-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ on:
required: false
type: boolean
default: true
channel:
description: "Channel to use (nightly, test, release, all)"
default: ""
type: string
# script:
# description: 'Script to utilize'
# default: "python setup.py bdist_wheel"
Expand Down Expand Up @@ -73,7 +77,7 @@ jobs:
container:
image: ${{ matrix.container_image }}
options: ${{ matrix.gpu_arch_type == 'cuda' && '--gpus all' || ' ' }}
if: ${{ env.CU_VERSION == '12.1' }}
if: ${{ matrix.desired_cuda == '12.1' }}
# If a build is taking longer than 60 minutes on these runners we need
# to have a conversation
timeout-minutes: 60
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/linux-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,18 +48,18 @@ jobs:
smoke-test-script: ${{ matrix.smoke-test-script }}
trigger-event: ${{ github.event_name }}

build-other-release-artifacts:
build-release-artifacts:
name: Build other release artifacts
needs: [generate-matrix, build]
strategy:
fail-fast: false
matrix:
include:
- repository: pytorch/tensorrt
if: ${{ env.CHANNEL == 'release'}}
uses: ./.github/workflows/linux-release-artifacts.yml
if: ${{ contains( github.event.pull_request.labels.*.name, 'build-release-artifacts') }}
with:
job-name: build-other-release-artifiacts
job-name: build-release-artifiacts
repository: "pytorch/tensorrt"
ref: ""
test-infra-repository: pytorch/test-infra
Expand Down

0 comments on commit 144b1eb

Please sign in to comment.