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 27
27
outputs :
28
28
lts_matrix :
29
29
description : " Generated Matrix"
30
- value : ${{ jobs.resolve_matrix .outputs.lts_matrix }}
30
+ value : ${{ jobs.testing_matrix .outputs.lts_matrix }}
31
31
lts_aws_matrix :
32
32
description : " Generated Matrix AWS subset"
33
- value : ${{ jobs.resolve_matrix .outputs.lts_aws_matrix }}
33
+ value : ${{ jobs.testing_matrix .outputs.lts_aws_matrix }}
34
34
jobs :
35
- resolve_matrix :
36
- name : Resolve Test Matrix
35
+ testing_matrix :
36
+ name : Generate Testing Matrix
37
37
runs-on : ubuntu-latest
38
38
outputs :
39
39
lts_matrix : ${{ steps.work.outputs.lts_matrix }}
Original file line number Diff line number Diff line change 10
10
- ' .github/workflows/sycl_nightly.yml'
11
11
12
12
jobs :
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
16
16
with :
17
17
lts_config : " ocl_gen9;ocl_x64"
18
18
19
19
ubuntu2004_build_test :
20
20
if : github.repository == 'intel/llvm'
21
21
uses : ./.github/workflows/sycl_linux_build_and_test.yml
22
- needs : resolve_matrix
22
+ needs : testing_matrix
23
23
secrets : inherit
24
24
with :
25
25
build_cache_root : " /__w/"
29
29
ubuntu2004_opaque_pointers_build_test :
30
30
if : github.repository == 'intel/llvm'
31
31
uses : ./.github/workflows/sycl_linux_build_and_test.yml
32
- needs : resolve_matrix
32
+ needs : testing_matrix
33
33
secrets : inherit
34
34
with :
35
35
build_cache_root : " /__w/"
Original file line number Diff line number Diff line change 12
12
13
13
jobs :
14
14
# 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
18
18
with :
19
19
lts_config : " l0_gen9"
20
20
linux_default :
21
21
name : Linux Default
22
- needs : resolve_matrix
22
+ needs : testing_matrix
23
23
uses : ./.github/workflows/sycl_linux_build_and_test.yml
24
24
secrets : inherit
25
25
with :
26
26
build_cache_root : " /__w/llvm"
27
27
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 }}
30
30
linux_no_assert :
31
31
name : Linux (no assert)
32
32
uses : ./.github/workflows/sycl_linux_build_and_test.yml
Original file line number Diff line number Diff line change @@ -35,17 +35,17 @@ jobs:
35
35
uses : ./devops/actions/clang-format
36
36
37
37
# 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
41
41
with :
42
42
lts_config : " hip_amdgpu;ocl_x64;ocl_gen9;l0_gen9;esimd_emu;cuda"
43
43
44
44
linux_default :
45
45
name : Linux
46
46
# Only build and test patches, that have passed all linter checks, because
47
47
# the next commit is likely to be a follow-up on that job.
48
- needs : [lint, resolve_matrix ]
48
+ needs : [lint, testing_matrix ]
49
49
if : always() && (success() || contains(github.event.pull_request.labels.*.name, 'ignore-lint'))
50
50
uses : ./.github/workflows/sycl_linux_build_and_test.yml
51
51
secrets : inherit
55
55
build_cache_size : " 8G"
56
56
build_artifact_suffix : " default"
57
57
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