Skip to content

Commit

Permalink
Revert "Cache downloads"
Browse files Browse the repository at this point in the history
This reverts commit 5276c53.
  • Loading branch information
adamjstewart committed Feb 26, 2023
1 parent 04a1c8b commit 137c69e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ jobs:
run: pytest -m slow --durations=10
notebooks:
name: notebooks
env:
TMPDIR: ${{ runner.temp }}
runs-on: ubuntu-latest
steps:
- name: Clone repo
Expand All @@ -69,10 +67,8 @@ jobs:
uses: actions/cache@v3.2.5
id: cache
with:
path: |
${{ env.pythonLocation }}
${{ runner.temp }}
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.cfg') }}-${{ hashFiles('docs/tutorial/**') }}
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.cfg') }}
- name: Install pip dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: |
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/tutorials.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ on:
jobs:
notebooks:
name: notebooks
env:
TMPDIR: ${{ runner.temp }}
runs-on: ubuntu-latest
steps:
- name: Clone repo
Expand All @@ -27,10 +25,8 @@ jobs:
uses: actions/cache@v3.2.4
id: cache
with:
path: |
${{ env.pythonLocation }}
${{ runner.temp }}
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.cfg') }}-${{ hashFiles('docs/tutorial/**') }}
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.cfg') }}
- name: Install pip dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: |
Expand Down

0 comments on commit 137c69e

Please sign in to comment.