MilesCranmer commited on
Commit
e8815be
1 Parent(s): f2796a7

Avoid caching Julia packages

Browse files
.github/workflows/CI.yml CHANGED
@@ -40,6 +40,7 @@ jobs:
40
  uses: julia-actions/cache@v1
41
  with:
42
  cache-name: ${{ matrix.os }}-test-${{ matrix.julia-version }}-${{ matrix.python-version }}
 
43
  - name: "Set up Python"
44
  uses: actions/setup-python@v4
45
  with:
@@ -105,6 +106,7 @@ jobs:
105
  uses: julia-actions/cache@v1
106
  with:
107
  cache-name: ${{ matrix.os }}-conda-${{ matrix.julia-version }}-${{ matrix.python-version }}
 
108
  - name: "Install PySR"
109
  run: |
110
  python3 -m pip install .
 
40
  uses: julia-actions/cache@v1
41
  with:
42
  cache-name: ${{ matrix.os }}-test-${{ matrix.julia-version }}-${{ matrix.python-version }}
43
+ cache-packages: false
44
  - name: "Set up Python"
45
  uses: actions/setup-python@v4
46
  with:
 
106
  uses: julia-actions/cache@v1
107
  with:
108
  cache-name: ${{ matrix.os }}-conda-${{ matrix.julia-version }}-${{ matrix.python-version }}
109
+ cache-packages: false
110
  - name: "Install PySR"
111
  run: |
112
  python3 -m pip install .
.github/workflows/CI_Windows.yml CHANGED
@@ -40,6 +40,7 @@ jobs:
40
  uses: julia-actions/cache@v1
41
  with:
42
  cache-name: ${{ matrix.os }}-test-${{ matrix.julia-version }}-${{ matrix.python-version }}
 
43
  - name: "Set up Python"
44
  uses: actions/setup-python@v4
45
  with:
 
40
  uses: julia-actions/cache@v1
41
  with:
42
  cache-name: ${{ matrix.os }}-test-${{ matrix.julia-version }}-${{ matrix.python-version }}
43
+ cache-packages: false
44
  - name: "Set up Python"
45
  uses: actions/setup-python@v4
46
  with:
.github/workflows/CI_mac.yml CHANGED
@@ -40,6 +40,7 @@ jobs:
40
  uses: julia-actions/cache@v1
41
  with:
42
  cache-name: ${{ matrix.os }}-test-${{ matrix.julia-version }}-${{ matrix.python-version }}
 
43
  - name: "Set up Python"
44
  uses: actions/setup-python@v4
45
  with:
 
40
  uses: julia-actions/cache@v1
41
  with:
42
  cache-name: ${{ matrix.os }}-test-${{ matrix.julia-version }}-${{ matrix.python-version }}
43
+ cache-packages: false
44
  - name: "Set up Python"
45
  uses: actions/setup-python@v4
46
  with: