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.testing_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.testing_matrix .outputs.lts_aws_matrix }}
3434jobs :
35- resolve_matrix :
36- name : Resolve Test Matrix
35+ testing_matrix :
36+ name : Generate Testing 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+ testing_matrix :
14+ name : Generate Testing 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 : testing_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 : testing_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+ testing_matrix :
16+ name : Generate Testing 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 : testing_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.testing_matrix .outputs.lts_matrix }}
29+ lts_aws_matrix : ${{ needs.testing_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 @@ -35,17 +35,17 @@ jobs:
3535 uses : ./devops/actions/clang-format
3636
3737 # This job generates matrix of tests for LLVM Test Suite
38- resolve_matrix :
39- name : Resolve Test Matrix
40- uses : ./.github/workflows/sycl_resolve_test_matrix .yml
38+ testing_matrix :
39+ name : Generate Testing Matrix
40+ uses : ./.github/workflows/sycl_gen_test_matrix .yml
4141 with :
4242 lts_config : " hip_amdgpu;ocl_x64;ocl_gen9;l0_gen9;esimd_emu;cuda"
4343
4444 linux_default :
4545 name : Linux
4646 # Only build and test patches, that have passed all linter checks, because
4747 # the next commit is likely to be a follow-up on that job.
48- needs : [lint, resolve_matrix ]
48+ needs : [lint, testing_matrix ]
4949 if : always() && (success() || contains(github.event.pull_request.labels.*.name, 'ignore-lint'))
5050 uses : ./.github/workflows/sycl_linux_build_and_test.yml
5151 secrets : inherit
5555 build_cache_size : " 8G"
5656 build_artifact_suffix : " default"
5757 build_cache_suffix : " default"
58- lts_matrix : ${{ needs.resolve_matrix .outputs.lts_matrix }}
59- lts_aws_matrix : ${{ needs.resolve_matrix .outputs.lts_aws_matrix }}
58+ lts_matrix : ${{ needs.testing_matrix .outputs.lts_matrix }}
59+ lts_aws_matrix : ${{ needs.testing_matrix .outputs.lts_aws_matrix }}
You can’t perform that action at this time.
0 commit comments