From 62ce79029b758b544ed6c65912302d61309ef51c Mon Sep 17 00:00:00 2001 From: Alexander Dokuchaev Date: Wed, 22 Jan 2025 11:10:51 +0200 Subject: [PATCH] [GHA] Disable cache (#3202) Disable pip cache to avoid issues with cache --- .github/workflows/build_html_doc.yml | 1 - .github/workflows/build_schema_page.yml | 1 - .github/workflows/call_precommit.yml | 7 ------- .github/workflows/conformance_weight_compression.yml | 1 - .github/workflows/examples.yml | 2 -- .github/workflows/install.yml | 2 -- .github/workflows/macos.yml | 2 -- .github/workflows/nightly.yml | 1 - 8 files changed, 17 deletions(-) diff --git a/.github/workflows/build_html_doc.yml b/.github/workflows/build_html_doc.yml index 1b812b7991c..27219deee3a 100644 --- a/.github/workflows/build_html_doc.yml +++ b/.github/workflows/build_html_doc.yml @@ -19,7 +19,6 @@ jobs: - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 with: python-version: 3.10.14 - cache: pip - name: Install NNCF and doc requirements run: | pip install . diff --git a/.github/workflows/build_schema_page.yml b/.github/workflows/build_schema_page.yml index 85ef40d02bc..14965c4a19a 100644 --- a/.github/workflows/build_schema_page.yml +++ b/.github/workflows/build_schema_page.yml @@ -14,7 +14,6 @@ jobs: - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 with: python-version: 3.10.14 - cache: pip - name: Install and Build run: | diff --git a/.github/workflows/call_precommit.yml b/.github/workflows/call_precommit.yml index 11098e693af..54f14e006df 100644 --- a/.github/workflows/call_precommit.yml +++ b/.github/workflows/call_precommit.yml @@ -33,7 +33,6 @@ jobs: - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 with: python-version: ${{ inputs.python_version }} - cache: pip - name: Override constraints if: ${{ inputs.override_requirements != '' }} run: python .github/scripts/override_constraints.py "${{ inputs.override_requirements }}" @@ -86,7 +85,6 @@ jobs: - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 with: python-version: ${{ inputs.python_version }} - cache: pip - name: Override constraints if: ${{ inputs.override_requirements != '' }} run: python .github/scripts/override_constraints.py "${{ inputs.override_requirements }}" @@ -119,7 +117,6 @@ jobs: - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 with: python-version: ${{ inputs.python_version }} - cache: pip - name: Runner info continue-on-error: true run: | @@ -171,7 +168,6 @@ jobs: - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 with: python-version: ${{ inputs.python_version }} - cache: pip - name: Override constraints if: ${{ inputs.override_requirements != '' }} run: python .github/scripts/override_constraints.py "${{ inputs.override_requirements }}" @@ -205,7 +201,6 @@ jobs: - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 with: python-version: ${{ inputs.python_version }} - cache: pip - name: Override constraints if: ${{ inputs.override_requirements != '' }} run: python .github/scripts/override_constraints.py "${{ inputs.override_requirements }}" @@ -232,7 +227,6 @@ jobs: - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 with: python-version: ${{ inputs.python_version }} - cache: pip - name: Install test requirements run: pip install -r tests/tools/requirements.txt - name: Print installed modules @@ -253,7 +247,6 @@ jobs: - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 with: python-version: ${{ inputs.python_version }} - cache: pip - name: Override constraints if: ${{ inputs.override_requirements != '' }} run: python .github/scripts/override_constraints.py "${{ inputs.override_requirements }}" diff --git a/.github/workflows/conformance_weight_compression.yml b/.github/workflows/conformance_weight_compression.yml index 2e8af6fe4f1..6345baeda26 100644 --- a/.github/workflows/conformance_weight_compression.yml +++ b/.github/workflows/conformance_weight_compression.yml @@ -37,7 +37,6 @@ jobs: - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 with: python-version: 3.10.14 - cache: pip - name: cpuinfo run: cat /proc/cpuinfo - name: Install NNCF and test requirements diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index fd691457a19..326b78ab76e 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -44,7 +44,6 @@ jobs: - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 with: python-version: 3.10.14 - cache: pip - name: cpuinfo run: cat /proc/cpuinfo - name: Install test requirements @@ -96,7 +95,6 @@ jobs: - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 with: python-version: "3.10" - cache: pip - uses: ilammy/msvc-dev-cmd@ed94116c4d30d2091601b81f339a2eaa1c2ba0a6 # v1.4.1 - name: Install NNCF and test requirements run: | diff --git a/.github/workflows/install.yml b/.github/workflows/install.yml index 0b72d6d974e..7e87789f6e4 100644 --- a/.github/workflows/install.yml +++ b/.github/workflows/install.yml @@ -34,7 +34,6 @@ jobs: - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 with: python-version: "3.10" - cache: pip - name: Install test requirements run: | pip install -r tests/cross_fw/examples/requirements.txt @@ -79,7 +78,6 @@ jobs: - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 with: python-version: 3.10.14 - cache: pip - name: Install test requirements run: | pip install -r tests/cross_fw/examples/requirements.txt diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index af90ec7f3ca..6746db181d6 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -26,7 +26,6 @@ jobs: - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 with: python-version: "3.10" - cache: pip - name: Install dependencies run: | pip install . @@ -52,7 +51,6 @@ jobs: - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 with: python-version: "3.10" - cache: pip - name: Install dependencies run: | pip install . diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 7121d84efb3..750a38b584c 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -39,7 +39,6 @@ jobs: - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 with: python-version: 3.10.14 - cache: pip - name: Install NNCF and test requirements run: pip install -e . -r tests/tensorflow/requirements.txt - name: Print installed modules