Skip to content

Commit

Permalink
[GHA] Switch off GPU tests in precommit, post-commit and nightly (ope…
Browse files Browse the repository at this point in the history
…nvinotoolkit#26559)

### Details:
 - Switch off GPU tests in GHA

### Tickets:
 - 152280
  • Loading branch information
dorloff authored Sep 12, 2024
1 parent 3f0bd0f commit d5eeea1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ubuntu_20.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ jobs:
runner: "[ 'self-hosted', 'igpu' ]"
container: '{"image": "ubuntu:20.04", "volumes": ["/dev/dri:/dev/dri"], "options": "--group-add 109 --group-add 44
--device /dev/dri:/dev/dri"}'
if: fromJSON(needs.smart_ci.outputs.affected_components).GPU
# if: fromJSON(needs.smart_ci.outputs.affected_components).GPU
if: ${{ 'false' }} # Ticket: 152280

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

Overall_Status:
name: ci/gha_overall_status_ubuntu_20
needs: [Smart_CI, Build, iGPU, Debian_Packages, Samples]
needs: [Smart_CI, Build, Debian_Packages, Samples]
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit d5eeea1

Please sign in to comment.