Skip to content

Commit dd10f1b

Browse files
committed
test
1 parent 22cedab commit dd10f1b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build-test-linux-x86_64.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,11 @@ jobs:
132132
script: |
133133
set -euo pipefail
134134
echo "L0-dynamo-core-tests successfully completed"
135-
if [ ${{ CU_VERSION }} == "cu128" ]; then
135+
if [ ${CU_VERSION} == "cu128" ]; then
136136
echo "running L0-dynamo-core-tests for cu128 is not supported"
137137
exit -1
138138
fi
139-
echo "Running L0-dynamo-core-tests for ${{ CU_VERSION }} successfully completed"
139+
echo "Running L0-dynamo-core-tests for ${CU_VERSION} successfully completed"
140140
# pushd .
141141
# cd tests/py
142142
# cd dynamo

.github/workflows/linux-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
USE_TRT_RTX: ${{ inputs.use-rtx }}
8585
DOWNLOAD_ARTIFACT_NAME: pytorch_tensorrt_${{ matrix.tensorrt.version }}_${{ matrix.python_version }}_${{ matrix.desired_cuda }}_${{ inputs.architecture }}
8686
name: ${{ inputs.job-name }}-${{ matrix.tensorrt.version }}-${{ matrix.python_version }}-${{ matrix.desired_cuda }}
87-
if: ${{ matrix.desired_cuda == inputs.filter-cuda && matrix.python_version == inputs.filter-python }}
87+
if: ${{ env.CU_VERSION == inputs.filter-cuda && env.PYTHON_VERSION == inputs.filter-python }}
8888
runs-on: ${{ matrix.validation_runner }}
8989
container:
9090
image: ${{ matrix.container_image }}

0 commit comments

Comments
 (0)