Skip to content

Commit 95d6eea

Browse files
authored
[GHA] Switch off GPU tests in precommit, post-commit and nightly (#26560)
### Details: - Switch off GPU tests in GHA ### Tickets: - 152280
1 parent 7f85772 commit 95d6eea

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ubuntu_20.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ jobs:
128128
runner: "[ 'self-hosted', 'igpu' ]"
129129
container: '{"image": "ubuntu:20.04", "volumes": ["/dev/dri:/dev/dri"], "options": "--group-add 109 --group-add 44
130130
--device /dev/dri:/dev/dri"}'
131-
if: fromJSON(needs.smart_ci.outputs.affected_components).GPU
131+
# if: fromJSON(needs.smart_ci.outputs.affected_components).GPU
132+
if: ${{ 'false' }} # Ticket: 152280
132133

133134
dGPU:
134135
name: dGPU Tests
@@ -145,11 +146,12 @@ jobs:
145146
runner: "[ 'self-hosted', 'dgpu' ]"
146147
container: '{"image": "ubuntu:20.04", "volumes": ["/dev/dri:/dev/dri"], "options": "--group-add 109 --group-add 44
147148
--device /dev/dri/card0:/dev/dri/card0 --device /dev/dri/renderD128:/dev/dri/renderD128"}'
148-
if: ${{ github.event_name == 'schedule' }}
149+
# if: ${{ github.event_name == 'schedule' }}
150+
if: ${{ 'false' }} # Ticket: 152280
149151

150152
Overall_Status:
151153
name: ci/gha_overall_status_ubuntu_20
152-
needs: [Smart_CI, Build, iGPU, Debian_Packages, Samples]
154+
needs: [Smart_CI, Build, Debian_Packages, Samples]
153155
if: ${{ always() }}
154156
runs-on: ubuntu-latest
155157
steps:

0 commit comments

Comments
 (0)