From 64ba9b266cccbad91a4901444618e7a92187b118 Mon Sep 17 00:00:00 2001 From: Alexander Dokuchaev Date: Tue, 21 Oct 2025 12:31:32 +0300 Subject: [PATCH] try python 3.14 --- .github/workflows/precommit.yml | 42 ++++++++++++++++----------------- .github/workflows/weekly.yml | 19 ++++++++------- 2 files changed, 31 insertions(+), 30 deletions(-) diff --git a/.github/workflows/precommit.yml b/.github/workflows/precommit.yml index 3a4a1dc9399..09bd5512ce5 100644 --- a/.github/workflows/precommit.yml +++ b/.github/workflows/precommit.yml @@ -1,24 +1,24 @@ -name: precommit -permissions: read-all +# name: precommit +# permissions: read-all -on: - pull_request: - paths-ignore: - - '**/*.md' - - '.ci/*' - - 'docs/**/*' - - 'examples/**/*' - - 'licensing/*' - - 'tests/post_training/*' # post_training tests runs on Jenkins - - 'tests/cross_fw/examples/*' # examples tests runs in separate workflow +# on: +# pull_request: +# paths-ignore: +# - '**/*.md' +# - '.ci/*' +# - 'docs/**/*' +# - 'examples/**/*' +# - 'licensing/*' +# - 'tests/post_training/*' # post_training tests runs on Jenkins +# - 'tests/cross_fw/examples/*' # examples tests runs in separate workflow -concurrency: - group: precommit-${{ github.event.pull_request.number }} - cancel-in-progress: true +# concurrency: +# group: precommit-${{ github.event.pull_request.number }} +# cancel-in-progress: true -jobs: - pytest: - uses: ./.github/workflows/call_precommit.yml - with: - python_version: "3.10.14" - gpu_enabled: true +# jobs: +# pytest: +# uses: ./.github/workflows/call_precommit.yml +# with: +# python_version: "3.10.14" +# gpu_enabled: true diff --git a/.github/workflows/weekly.yml b/.github/workflows/weekly.yml index 75359544a18..a96385c6e56 100644 --- a/.github/workflows/weekly.yml +++ b/.github/workflows/weekly.yml @@ -5,7 +5,7 @@ on: workflow_dispatch: schedule: - cron: '0 0 * * 0' - + pull_request: jobs: precommit: if: github.repository_owner == 'openvinotoolkit' @@ -13,17 +13,18 @@ jobs: fail-fast: false matrix: include: - - python_version: "3.10" - override_requirements: "numpy==1.24.0" - - python_version: "3.11" - - python_version: "3.12" - - python_version: "3.13" + # - python_version: "3.10" + # override_requirements: "numpy==1.24.0" + # - python_version: "3.11" + # - python_version: "3.12" + # - python_version: "3.13" + - python_version: "3.14" uses: ./.github/workflows/call_precommit.yml with: python_version: ${{ matrix.python_version }} override_requirements: ${{ matrix.override_requirements || '' }} gpu_enabled: false - macos: - if: github.repository_owner == 'openvinotoolkit' - uses: ./.github/workflows/macos.yml + # macos: + # if: github.repository_owner == 'openvinotoolkit' + # uses: ./.github/workflows/macos.yml