Skip to content

Commit 553efb2

Browse files
committed
Updates
1 parent 0cefed3 commit 553efb2

File tree

2 files changed

+5
-20
lines changed

2 files changed

+5
-20
lines changed

.github/workflows/CI.yaml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ concurrency:
1212
# Skip intermediate builds: always.
1313
# Cancel intermediate builds: only if it is a pull request build.
1414
group: ${{ github.workflow }}-${{ github.ref }}
15-
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
15+
cancel-in-progress: true
1616

1717
jobs:
1818
test:
@@ -32,18 +32,10 @@ jobs:
3232
- name: Cache Julia artifacts & such
3333
uses: julia-actions/cache@v2
3434
with:
35-
# Contains the node .env for PlutoPDF.
36-
# Since it needs to be in sync with the puppeteer cache, we cache it separately.
35+
# Contains the node env for PlutoPDF.
36+
# Disable so it installs Chromium every time.
3737
cache-scratchspaces: false
3838

39-
- name: Set up PlutoPDF caches
40-
uses: actions/cache@v4
41-
with:
42-
path: |
43-
~/.julia/scratchspaces
44-
~/.cache/puppeteer
45-
key: ${{ runner.os }}-plutopdf_cache-${{ hashFiles('**/Project.toml', '**/Manifest.toml', '.github/workflows/*' ) }}
46-
4739
# We set up a folder that Pluto can use to cache exported
4840
# notebooks. If the notebook file did not change, then Pluto can
4941
# take the exported file from cache instead of running the

.github/workflows/ExportPluto.yaml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,9 @@ jobs:
3232
- name: Cache Julia artifacts & such
3333
uses: julia-actions/cache@v2
3434
with:
35-
# Contains the node .env for PlutoPDF.
36-
# Since it needs to be in sync with the puppeteer cache, we cache it separately.
35+
# Contains the node env for PlutoPDF.
36+
# Disable so it installs Chromium every time.
3737
cache-scratchspaces: false
38-
- name: Set up PlutoPDF caches
39-
uses: actions/cache@v4
40-
with:
41-
path: |
42-
~/.julia/scratchspaces
43-
~/.cache/puppeteer
44-
key: ${{ runner.os }}-plutopdf_cache-${{ hashFiles('**/Project.toml', '**/Manifest.toml', '.github/workflows/*' ) }}
4538

4639
# We set up a folder that Pluto can use to cache exported
4740
# notebooks. If the notebook file did not change, then Pluto can

0 commit comments

Comments
 (0)