Skip to content

Commit b06a128

Browse files
committed
test
1 parent 352cfbd commit b06a128

File tree

1 file changed

+0
-27
lines changed

1 file changed

+0
-27
lines changed

.github/workflows/test-variant-dependency-workflow.yml

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,7 @@ jobs:
1919
2020
build:
2121
name: Build
22-
runs-on: ubuntu-latest
2322
needs: [generate-matrix]
24-
strategy:
25-
fail-fast: false
2623
uses: ./.github/workflows/test-variant-dependency-build.yml
2724
with:
2825
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
@@ -32,40 +29,16 @@ jobs:
3229
name: L0-test
3330
needs: [generate-matrix, build]
3431
if: always() && needs.build.result == 'success'
35-
runs-on: ubuntu-latest
36-
strategy:
37-
fail-fast: false
3832
uses: ./.github/workflows/test-variant-dependency-test.yml
3933
with:
4034
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
41-
script: |
42-
set -euo pipefail
43-
echo "needs.build.outputs.result=${{ needs.build.outputs.result }}"
44-
echo "Running L0 test with CUDA ${{ matrix.cuda-version }}"
45-
if [ "${{ matrix.cuda-version }}" == "12.8" ]; then
46-
echo "Running L0 test for cu128 is not supported"
47-
exit -1
48-
fi
49-
echo "Running L0 test for ${{ matrix.cuda-version }} successfully completed"
5035

5136
L1-test:
5237
name: L1-test
5338
needs: [generate-matrix, build, L0-test]
5439
if: always() && needs.build.result == 'success' && needs.L0-test.result == 'success'
55-
runs-on: ubuntu-latest
56-
strategy:
57-
fail-fast: false
5840
uses: ./.github/workflows/test-variant-dependency-test.yml
5941
with:
6042
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
61-
script: |
62-
set -euo pipefail
63-
echo "needs.build.outputs.result=${{ needs.build.outputs.result }}"
64-
echo "Running L1 test with CUDA ${{ matrix.cuda-version }}"
65-
if [ "${{ matrix.cuda-version }}" == "12.8" ]; then
66-
echo "Running L1 test for cu128 is not supported"
67-
exit -1
68-
fi
69-
echo "Running L1 test for ${{ matrix.cuda-version }} successfully completed"
7043

7144

0 commit comments

Comments
 (0)