Skip to content

Commit 429c6d0

Browse files
committed
nightly / smoke scopes specified
1 parent ffd86b6 commit 429c6d0

File tree

6 files changed

+8
-2
lines changed

6 files changed

+8
-2
lines changed

.github/workflows/debian_10_arm.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ jobs:
122122
runner: 'aks-linux-16-cores-arm'
123123
image: ${{ fromJSON(needs.docker.outputs.images).ov_test.debian_10_arm }}
124124
python-version: '3.7'
125+
scope: ${{ github.event_name == 'workflow_dispatch' && 'nightly' || 'smoke' }}
125126

126127
Overall_Status:
127128
name: ci/gha_overall_status_debian_10_arm

.github/workflows/job_cpu_functional_tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
INSTALL_TEST_DIR: ${{ github.workspace }}/install/tests
4141
PARALLEL_TEST_SCRIPT: ${{ github.workspace }}/install/tests/functional_test_utils/layer_tests_summary/run_parallel.py
4242
PARALLEL_TEST_CACHE: ${{ github.workspace }}/install/tests/test_cache.lst
43+
GTEST_FILTER: ${{ inputs.scope == 'nightly' && '' || '--gtest_filter=smoke' }}
4344
steps:
4445
- name: Download OpenVINO package
4546
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
@@ -111,8 +112,8 @@ jobs:
111112
# Needed as ze_loader.so is under INSTALL_TEST_DIR
112113
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${INSTALL_TEST_DIR}
113114
114-
python3 ${PARALLEL_TEST_SCRIPT} -e ${INSTALL_TEST_DIR}/ov_cpu_func_tests -c ${PARALLEL_TEST_CACHE} -w ${INSTALL_TEST_DIR} -s suite -rf 0 -- --gtest_print_time=1
115-
timeout-minutes: 125
115+
python3 ${PARALLEL_TEST_SCRIPT} -e ${INSTALL_TEST_DIR}/ov_cpu_func_tests -c ${PARALLEL_TEST_CACHE} -w ${INSTALL_TEST_DIR} -s suite -rf 0 -- --gtest_print_time=1 ${{ env.GTEST_FILTER }}
116+
timeout-minutes: ${{ inputs.scope == 'nightly' && 125 || 25 }}
116117

117118
- name: Save tests execution time
118119
uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0

.github/workflows/linux_arm64.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ jobs:
223223
runner: 'aks-linux-16-cores-arm'
224224
image: ${{ fromJSON(needs.docker.outputs.images).ov_test.ubuntu_20_04_arm64 }}
225225
python-version: '3.11'
226+
scope: ${{ github.event_name == 'workflow_dispatch' && 'nightly' || 'smoke' }}
226227

227228
TensorFlow_Models_Tests:
228229
name: TensorFlow Models tests

.github/workflows/mac.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -416,6 +416,7 @@ jobs:
416416
with:
417417
runner: 'macos-13'
418418
python-version: '3.11'
419+
scope: ${{ contains(fromJSON('["schedule", "workflow_dispatch"]'), github.event_name) && 'nightly' || 'smoke' }}
419420

420421
upload_artifacts:
421422
name: Upload OpenVINO artifacts

.github/workflows/mac_arm64.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -376,3 +376,4 @@ jobs:
376376
with:
377377
runner: 'macos-13-xlarge'
378378
python-version: '3.11'
379+
scope: ${{ contains(fromJSON('["schedule", "workflow_dispatch"]'), github.event_name) && 'nightly' || 'smoke' }}

.github/workflows/ubuntu_22.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,7 @@ jobs:
363363
runner: 'aks-linux-8-cores-32gb'
364364
image: ${{ fromJSON(needs.docker.outputs.images).ov_test.ubuntu_22_04_x64 }}
365365
python-version: '3.11'
366+
scope: ${{ contains(fromJSON('["schedule", "workflow_dispatch"]'), github.event_name) && 'nightly' || 'smoke' }}
366367

367368
TensorFlow_Models_Tests_Precommit:
368369
name: TensorFlow Models tests

0 commit comments

Comments
 (0)