From cb85ddcb460c82a702a5a5b0db799c09dadc6adf Mon Sep 17 00:00:00 2001 From: Andrei Kashchikhin Date: Fri, 24 May 2024 10:08:52 +0100 Subject: [PATCH] [CI] [GHA] Fix GPU job display name if the job is skipped (#23965) ### Details: - If the GPU job is skipped, the UI shows: ![image](https://github.com/openvinotoolkit/openvino/assets/65596953/6c8c8142-d12e-4f80-a2c3-ab17ff9e3b1f) The jobs created by `matrix` will have the necessary distinguishable properties in the `()` after the job name, e.g., for `Conformance`: ![image](https://github.com/openvinotoolkit/openvino/assets/65596953/d9104eda-3c33-4cee-ab33-4df0e41cc6f3) so we do not need `matrix`. --- .github/workflows/linux.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 6b43a90fb9f..008c68854ca 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -695,7 +695,7 @@ jobs: if: fromJSON(needs.smart_ci.outputs.affected_components).TOKENIZERS GPU: - name: GPU ${{ matrix.TEST_TYPE }} Tests + name: GPU Tests needs: [ Build, Smart_CI ] if: fromJSON(needs.smart_ci.outputs.affected_components).GPU timeout-minutes: 80