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:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
|
||||
- name: Locate pip cache directory
|
||||
id: pip-cache-dir
|
||||
# extra output for debugging
|
||||
run: |
|
||||
echo "dir=$(python -m pip cache dir)" >> "$GITHUB_OUTPUT"
|
||||
echo "dir=$(python -m pip cache dir)"
|
||||
# - name: Locate pip cache directory
|
||||
# id: pip-cache-dir
|
||||
# # extra output for debugging
|
||||
# run: |
|
||||
# echo "dir=$(python -m pip cache dir)" >> "$GITHUB_OUTPUT"
|
||||
# echo "dir=$(python -m pip cache dir)"
|
||||
|
||||
- name: Cache pip
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ${{ steps.pip-cache-dir.outputs.dir }}
|
||||
key: ${{ runner.os }}-py-${{ matrix.python-version }}-pip-${{ hashFiles('**/requirements.txt') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-py-${{ matrix.python-version }}-pip-
|
||||
${{ runner.os }}-pip-
|
||||
# - name: Cache pip
|
||||
# uses: actions/cache@v4
|
||||
# with:
|
||||
# path: ${{ steps.pip-cache-dir.outputs.dir }}
|
||||
# key: ${{ runner.os }}-py-${{ matrix.python-version }}-pip-${{ hashFiles('**/requirements.txt') }}
|
||||
# restore-keys: |
|
||||
# ${{ runner.os }}-py-${{ matrix.python-version }}-pip-
|
||||
# ${{ runner.os }}-pip-
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
|
||||
Reference in New Issue
Block a user