Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 7 additions & 17 deletions .github/workflows/call_precommit_windows.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: call-precommit
name: call-precommit-windows
permissions: read-all

on:
Expand All @@ -14,13 +14,14 @@ on:
type: string
required: false

defaults:
run:
shell: bash

jobs:
common:
timeout-minutes: 40
runs-on: windows-2025
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
Expand All @@ -31,7 +32,6 @@ jobs:
- name: Override constraints
if: ${{ inputs.override_requirements != '' }}
run: python .github/scripts/override_constraints.py "${{ inputs.override_requirements }}"
shell: bash
- name: Install NNCF and test requirements
run: pip install . -r tests/common/requirements.txt
- name: Print installed modules
Expand All @@ -44,9 +44,6 @@ jobs:
onnx:
timeout-minutes: 40
runs-on: windows-2025-8-core
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
Expand All @@ -57,7 +54,6 @@ jobs:
- name: Override constraints
if: ${{ inputs.override_requirements != '' }}
run: python .github/scripts/override_constraints.py "${{ inputs.override_requirements }}"
shell: bash
- name: Install NNCF and test requirements
run: pip install . -r tests/onnx/requirements.txt
- name: Print installed modules
Expand All @@ -70,9 +66,6 @@ jobs:
openvino:
timeout-minutes: 40
runs-on: windows-2025-8-core
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
Expand All @@ -83,7 +76,6 @@ jobs:
- name: Override constraints
if: ${{ inputs.override_requirements != '' }}
run: python .github/scripts/override_constraints.py "${{ inputs.override_requirements }}"
shell: bash
- name: Install NNCF and test requirements
run: pip install . -r tests/openvino/requirements.txt
- name: Print installed modules
Expand All @@ -96,9 +88,8 @@ jobs:
pytorch-cpu:
timeout-minutes: 40
runs-on: windows-2025-8-core
defaults:
run:
shell: bash
env:
NNCF_EXTENSION_LOAD_TIMEOUT: 180
Comment thread
AlexanderDokuchaev marked this conversation as resolved.
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
Expand All @@ -110,7 +101,6 @@ jobs:
- name: Override constraints
if: ${{ inputs.override_requirements != '' }}
run: python .github/scripts/override_constraints.py "${{ inputs.override_requirements }}"
shell: bash
- name: Install NNCF and test requirements
run: |
pip install . -r tests/torch/requirements.txt
Expand Down
Loading