Skip to content

Commit

Permalink
Removed usage of matrix param in TF models tests job. (openvinotoolki…
Browse files Browse the repository at this point in the history
…t#23255)

### Details:
- Removed usage of matrix param in TF models tests job, as the timeout
is shared between jobs launched by matrix, which causes nightly jobs
abortion by timeout.

### Tickets:
 -
  • Loading branch information
popovaan authored Mar 5, 2024
1 parent 1c5a736 commit 981df38
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -511,18 +511,23 @@ jobs:
runner: 'ubuntu-20.04-8-cores'
model_scope: 'precommit'

TensorFlow_Models_Tests_Nightly:
name: TensorFlow Models tests
TensorFlow_Models_Tests_Nightly_TF_HUB:
name: TensorFlow TF Hub Models tests
if: ${{ github.event_name == 'schedule' }}
needs: [ Build, Smart_CI, Openvino_tokenizers ]
uses: ./.github/workflows/job_tensorflow_models_tests.yml
with:
runner: 'ubuntu-20.04-16-cores'
model_scope: 'nightly_tf_hub'

TensorFlow_Models_Tests_Nightly_HF:
name: TensorFlow Hugging Face Models tests
if: ${{ github.event_name == 'schedule' }}
needs: [ Build, Smart_CI, Openvino_tokenizers ]
strategy:
max-parallel: 2
matrix:
MODEL_SCOPE: ['nightly_hf', 'nightly_tf_hub']
uses: ./.github/workflows/job_tensorflow_models_tests.yml
with:
runner: 'ubuntu-20.04-16-cores'
model_scope: ${{ matrix.MODEL_SCOPE }}
model_scope: 'nightly_hf'

# TODO: Switch back to self-hosted runners
# container:
Expand Down

0 comments on commit 981df38

Please sign in to comment.