Skip to content

Commit dbd740b

Browse files
committed
test
1 parent bd69526 commit dbd740b

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

.github/workflows/build-test-tensorrt-windows.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
ref: ""
127127
test-infra-repository: pytorch/test-infra
128128
test-infra-ref: main
129-
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
129+
build-matrix: ${{ needs.substitute-runner.outputs.matrix }}
130130
pre-script: packaging/driver_upgrade.bat
131131
script: |
132132
export USE_HOST_DEPS=1
@@ -152,7 +152,7 @@ jobs:
152152
ref: ""
153153
test-infra-repository: pytorch/test-infra
154154
test-infra-ref: main
155-
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
155+
build-matrix: ${{ needs.substitute-runner.outputs.matrix }}
156156
pre-script: packaging/driver_upgrade.bat
157157
script: |
158158
export USE_HOST_DEPS=1
@@ -178,7 +178,7 @@ jobs:
178178
ref: ""
179179
test-infra-repository: pytorch/test-infra
180180
test-infra-ref: main
181-
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
181+
build-matrix: ${{ needs.substitute-runner.outputs.matrix }}
182182
pre-script: packaging/driver_upgrade.bat
183183
script: |
184184
export USE_HOST_DEPS=1
@@ -204,7 +204,7 @@ jobs:
204204
ref: ""
205205
test-infra-repository: pytorch/test-infra
206206
test-infra-ref: main
207-
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
207+
build-matrix: ${{ needs.substitute-runner.outputs.matrix }}
208208
pre-script: packaging/driver_upgrade.bat
209209
script: |
210210
export USE_HOST_DEPS=1
@@ -232,7 +232,7 @@ jobs:
232232
ref: ""
233233
test-infra-repository: pytorch/test-infra
234234
test-infra-ref: main
235-
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
235+
build-matrix: ${{ needs.substitute-runner.outputs.matrix }}
236236
pre-script: packaging/driver_upgrade.bat
237237
script: |
238238
export USE_HOST_DEPS=1
@@ -260,7 +260,7 @@ jobs:
260260
ref: ""
261261
test-infra-repository: pytorch/test-infra
262262
test-infra-ref: main
263-
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
263+
build-matrix: ${{ needs.substitute-runner.outputs.matrix }}
264264
pre-script: packaging/driver_upgrade.bat
265265
script: |
266266
export USE_HOST_DEPS=1
@@ -287,7 +287,7 @@ jobs:
287287
ref: ""
288288
test-infra-repository: pytorch/test-infra
289289
test-infra-ref: main
290-
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
290+
build-matrix: ${{ needs.substitute-runner.outputs.matrix }}
291291
pre-script: packaging/driver_upgrade.bat
292292
script: |
293293
export USE_HOST_DEPS=1

packaging/pre_build_script_windows.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
set -exou pipefail
1+
set -x
22

33
pip install -U numpy packaging pyyaml setuptools wheel
44

55
choco install bazelisk -y
66

7+
echo TENSORRT_VERSION=${TENSORRT_VERSION}
8+
79
if [[ ${TENSORRT_VERSION} != "" ]]; then
810
# this is the upgraded TensorRT version, replace current tensorrt version to the upgrade tensorRT version in the pyproject.toml
911
current_version=$(cat dev_dep_versions.yml | grep __tensorrt_version__ | sed 's/__tensorrt_version__: //g' | sed 's/"//g')

0 commit comments

Comments
 (0)