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.test_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.test_matrix .outputs.lts_aws_matrix }}
34
34
jobs :
35
- resolve_matrix :
36
- name : Resolve Test Matrix
35
+ test_matrix :
36
+ name : Generate Test 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
+ test_matrix :
14
+ name : Generate Test 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 : test_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 : test_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
+ test_matrix :
16
+ name : Generate Test 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 : test_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.test_matrix .outputs.lts_matrix }}
29
+ lts_aws_matrix : ${{ needs.test_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 @@ -38,17 +38,17 @@ jobs:
38
38
uses : ./devops/actions/clang-format
39
39
40
40
# 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
44
44
with :
45
45
lts_config : " hip_amdgpu;ocl_x64;ocl_gen9;l0_gen9;esimd_emu;cuda"
46
46
47
47
linux_default :
48
48
name : Linux
49
49
# Only build and test patches, that have passed all linter checks, because
50
50
# the next commit is likely to be a follow-up on that job.
51
- needs : [lint, resolve_matrix ]
51
+ needs : [lint, test_matrix ]
52
52
if : always() && (success() || contains(github.event.pull_request.labels.*.name, 'ignore-lint'))
53
53
uses : ./.github/workflows/sycl_linux_build_and_test.yml
54
54
secrets : inherit
58
58
build_cache_size : " 8G"
59
59
build_artifact_suffix : " default"
60
60
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