-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revisit caching strategy and pipeline structure (#11)
- Found and fixed bug for snippets of Isabelle theories. - Faster builds when serving the website due to smarter caching, error handling, and flags for preprocessing. - The CLI `juvix-mkdocs serve/build` has new flags: `-v` for verbose mkdocs mode, `--debug` for activating extra debugging messages, and `--remove-cache` for deleting the `.cache-juvix-mkdocs` folder.
- Loading branch information
1 parent
d8a4c92
commit f01cc27
Showing
16 changed files
with
1,172 additions
and
636 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ env: | |
GIT_COMMITTER_EMAIL: [email protected] | ||
GIT_COMMITTER_NAME: Tara | ||
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | ||
JUVIX_VERSION: v0.6.8 | ||
concurrency: | ||
group: "${{ github.workflow }}-${{ github.head_ref || github.run_id }}" | ||
cancel-in-progress: true | ||
|
@@ -31,7 +32,7 @@ jobs: | |
uses: jaxxstorm/[email protected] | ||
with: | ||
repo: anoma/juvix | ||
tag: v0.6.6 | ||
tag: ${{ env.JUVIX_VERSION }} | ||
cache: enable | ||
rename-to: juvix | ||
chmod: 0755 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.