Skip to content

Commit

Permalink
remove caching
Browse files Browse the repository at this point in the history
  • Loading branch information
h-mayorquin committed Feb 18, 2023
1 parent 5e3d3fc commit bd8b21b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/caches_cron_job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: '3.10'
- name: Get current year-month
id: date
run: |
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
steps:
- uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: '3.10'
- name: Get current hash (SHA) of the ephy_testing_data repo
id: repo_hash
run: |
Expand All @@ -61,7 +61,7 @@ jobs:
id: cache-datasets
with:
path: ~/spikeinterface_datasets
key: ${{ runner.os }}-datasetsTEST-${{ steps.repo_hash.outputs.dataset_hash }}
key: ${{ runner.os }}-datasets-${{ steps.repo_hash.outputs.dataset_hash }}
- name: Cache found?
run: echo "Cache-hit == ${{steps.cache-datasets.outputs.cache-hit == 'true'}}"
- name: Installing datalad and git-annex
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/core-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: |
git config --global user.email "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/full-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
HASH_EPHY_DATASET: git ls-remote https://gin.g-node.org/NeuralEnsemble/ephy_testing_data.git HEAD | cut -f1
with:
path: ~/spikeinterface_datasets
key: ${{ runner.os }}-datasetsTEST-${{ steps.vars.outputs.HASH_EPHY_DATASET }}
key: ${{ runner.os }}-datasets-${{ steps.vars.outputs.HASH_EPHY_DATASET }}
restore-keys: |
${{ runner.os }}-datasets
- name: Check ephy_testing_data files
Expand Down

0 comments on commit bd8b21b

Please sign in to comment.