fix: comment out pip cache steps for debugging purposes
This commit is contained in:
28
.github/workflows/ci.yml
vendored
28
.github/workflows/ci.yml
vendored
@@ -24,21 +24,21 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
|
|
||||||
- name: Locate pip cache directory
|
# - name: Locate pip cache directory
|
||||||
id: pip-cache-dir
|
# id: pip-cache-dir
|
||||||
# extra output for debugging
|
# # extra output for debugging
|
||||||
run: |
|
# run: |
|
||||||
echo "dir=$(python -m pip cache dir)" >> "$GITHUB_OUTPUT"
|
# echo "dir=$(python -m pip cache dir)" >> "$GITHUB_OUTPUT"
|
||||||
echo "dir=$(python -m pip cache dir)"
|
# echo "dir=$(python -m pip cache dir)"
|
||||||
|
|
||||||
- name: Cache pip
|
# - name: Cache pip
|
||||||
uses: actions/cache@v4
|
# uses: actions/cache@v4
|
||||||
with:
|
# with:
|
||||||
path: ${{ steps.pip-cache-dir.outputs.dir }}
|
# path: ${{ steps.pip-cache-dir.outputs.dir }}
|
||||||
key: ${{ runner.os }}-py-${{ matrix.python-version }}-pip-${{ hashFiles('**/requirements.txt') }}
|
# key: ${{ runner.os }}-py-${{ matrix.python-version }}-pip-${{ hashFiles('**/requirements.txt') }}
|
||||||
restore-keys: |
|
# restore-keys: |
|
||||||
${{ runner.os }}-py-${{ matrix.python-version }}-pip-
|
# ${{ runner.os }}-py-${{ matrix.python-version }}-pip-
|
||||||
${{ runner.os }}-pip-
|
# ${{ runner.os }}-pip-
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
Reference in New Issue
Block a user