Skip to content

Commit 33dff95

Browse files
author
Pavel Chupin
authored
[CI][NFC] Rename workflow job (#6572)
Just pure renaming of "resolve test matrix" to "generate test matrix" Follow up on a comment made at #6528
1 parent 43e713c commit 33dff95

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

.github/workflows/sycl_resolve_test_matrix.yml renamed to .github/workflows/sycl_gen_test_matrix.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ on:
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 }}
3434
jobs:
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 }}

.github/workflows/sycl_nightly.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ on:
1010
- '.github/workflows/sycl_nightly.yml'
1111

1212
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
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/"
@@ -29,7 +29,7 @@ jobs:
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/"

.github/workflows/sycl_post_commit.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,21 @@ on:
1212

1313
jobs:
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

.github/workflows/sycl_precommit.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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
@@ -58,5 +58,5 @@ jobs:
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 }}

0 commit comments

Comments
 (0)