Skip to content

Commit 4e34a62

Browse files
committed
test
1 parent 2c3efb6 commit 4e34a62

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.github/workflows/linux-release-artifacts.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Release artifacts on Linux
1+
name: Build release artifacts on Linux
22

33
on:
44
workflow_call:
@@ -59,7 +59,7 @@ on:
5959
type: string
6060

6161
jobs:
62-
build:
62+
build-release:
6363
strategy:
6464
fail-fast: false
6565
matrix: ${{ fromJSON(inputs.build-matrix) }}
@@ -200,5 +200,5 @@ jobs:
200200
# s3-prefix: ${{ env.REPOSITORY }}/${{ github.event.pull_request.number }}
201201

202202
concurrency:
203-
group: ${{ github.workflow }}-${{ github.ref_name }}
203+
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ inputs.repository }}-${{ inputs.job-name }}
204204
cancel-in-progress: true

.github/workflows/linux-release.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ jobs:
3030
post-script: packaging/post_build_script.sh
3131
smoke-test-script: packaging/smoke_test_script.sh
3232
package-name: torch_tensorrt
33-
# env:
34-
# CU_VERSION: ${{ build-matrix.desired_cuda }}
35-
# PYTHON_VERSION: ${{ build-matrix.python_version }}
3633
name: Build torch-tensorrt whl package
3734
uses: pytorch/test-infra/.github/workflows/build_wheels_linux.yml@release/2.3
3835
with:
@@ -49,13 +46,14 @@ jobs:
4946
trigger-event: ${{ github.event_name }}
5047

5148
build-release-artifacts:
52-
name: Build other release artifacts
49+
name: Build torch-tensorrt release artifacts
5350
needs: [generate-matrix, build]
5451
strategy:
5552
fail-fast: false
5653
matrix:
5754
include:
5855
- repository: pytorch/tensorrt
56+
- package-name: torch_tensorrt
5957
uses: ./.github/workflows/linux-release-artifacts.yml
6058
if: ${{ contains( github.event.pull_request.labels.*.name, 'build-release-artifacts') }}
6159
with:
@@ -68,5 +66,5 @@ jobs:
6866
pre-script: ${{ matrix.pre-script }}
6967

7068
concurrency:
71-
group: ${{ github.workflow }}-${{ github.ref_name }}
69+
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ inputs.repository }}-${{ inputs.job-name }}
7270
cancel-in-progress: true

0 commit comments

Comments
 (0)