File tree Expand file tree Collapse file tree 4 files changed +21
-21
lines changed Expand file tree Collapse file tree 4 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 2727 outputs :
2828 lts_matrix :
2929 description : " Generated Matrix"
30- value : ${{ jobs.resolve_matrix .outputs.lts_matrix }}
30+ value : ${{ jobs.test_matrix .outputs.lts_matrix }}
3131 lts_aws_matrix :
3232 description : " Generated Matrix AWS subset"
33- value : ${{ jobs.resolve_matrix .outputs.lts_aws_matrix }}
33+ value : ${{ jobs.test_matrix .outputs.lts_aws_matrix }}
3434jobs :
35- resolve_matrix :
36- name : Resolve Test Matrix
35+ test_matrix :
36+ name : Generate Test Matrix
3737 runs-on : ubuntu-latest
3838 outputs :
3939 lts_matrix : ${{ steps.work.outputs.lts_matrix }}
Original file line number Diff line number Diff line change 1010 - ' .github/workflows/sycl_nightly.yml'
1111
1212jobs :
13- resolve_matrix :
14- name : Resolve Test Matrix
15- uses : ./.github/workflows/sycl_resolve_test_matrix .yml
13+ test_matrix :
14+ name : Generate Test Matrix
15+ uses : ./.github/workflows/sycl_gen_test_matrix .yml
1616 with :
1717 lts_config : " ocl_gen9;ocl_x64"
1818
1919 ubuntu2004_build_test :
2020 if : github.repository == 'intel/llvm'
2121 uses : ./.github/workflows/sycl_linux_build_and_test.yml
22- needs : resolve_matrix
22+ needs : test_matrix
2323 secrets : inherit
2424 with :
2525 build_cache_root : " /__w/"
2929 ubuntu2004_opaque_pointers_build_test :
3030 if : github.repository == 'intel/llvm'
3131 uses : ./.github/workflows/sycl_linux_build_and_test.yml
32- needs : resolve_matrix
32+ needs : test_matrix
3333 secrets : inherit
3434 with :
3535 build_cache_root : " /__w/"
Original file line number Diff line number Diff line change 1212
1313jobs :
1414 # This job generates matrix of tests for LLVM Test Suite
15- resolve_matrix :
16- name : Resolve Test Matrix
17- uses : ./.github/workflows/sycl_resolve_test_matrix .yml
15+ test_matrix :
16+ name : Generate Test Matrix
17+ uses : ./.github/workflows/sycl_gen_test_matrix .yml
1818 with :
1919 lts_config : " l0_gen9"
2020 linux_default :
2121 name : Linux Default
22- needs : resolve_matrix
22+ needs : test_matrix
2323 uses : ./.github/workflows/sycl_linux_build_and_test.yml
2424 secrets : inherit
2525 with :
2626 build_cache_root : " /__w/llvm"
2727 build_artifact_suffix : " post_commit"
28- lts_matrix : ${{ needs.resolve_matrix .outputs.lts_matrix }}
29- lts_aws_matrix : ${{ needs.resolve_matrix .outputs.lts_aws_matrix }}
28+ lts_matrix : ${{ needs.test_matrix .outputs.lts_matrix }}
29+ lts_aws_matrix : ${{ needs.test_matrix .outputs.lts_aws_matrix }}
3030 linux_no_assert :
3131 name : Linux (no assert)
3232 uses : ./.github/workflows/sycl_linux_build_and_test.yml
Original file line number Diff line number Diff line change @@ -38,17 +38,17 @@ jobs:
3838 uses : ./devops/actions/clang-format
3939
4040 # This job generates matrix of tests for LLVM Test Suite
41- resolve_matrix :
42- name : Resolve Test Matrix
43- uses : ./.github/workflows/sycl_resolve_test_matrix .yml
41+ test_matrix :
42+ name : Generate Test Matrix
43+ uses : ./.github/workflows/sycl_gen_test_matrix .yml
4444 with :
4545 lts_config : " hip_amdgpu;ocl_x64;ocl_gen9;l0_gen9;esimd_emu;cuda"
4646
4747 linux_default :
4848 name : Linux
4949 # Only build and test patches, that have passed all linter checks, because
5050 # the next commit is likely to be a follow-up on that job.
51- needs : [lint, resolve_matrix ]
51+ needs : [lint, test_matrix ]
5252 if : always() && (success() || contains(github.event.pull_request.labels.*.name, 'ignore-lint'))
5353 uses : ./.github/workflows/sycl_linux_build_and_test.yml
5454 secrets : inherit
5858 build_cache_size : " 8G"
5959 build_artifact_suffix : " default"
6060 build_cache_suffix : " default"
61- lts_matrix : ${{ needs.resolve_matrix .outputs.lts_matrix }}
62- lts_aws_matrix : ${{ needs.resolve_matrix .outputs.lts_aws_matrix }}
61+ lts_matrix : ${{ needs.test_matrix .outputs.lts_matrix }}
62+ lts_aws_matrix : ${{ needs.test_matrix .outputs.lts_aws_matrix }}
You can’t perform that action at this time.
0 commit comments