-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change how CICD restores and saves the build cache, and cache pyright.
* Always restore the build cache for non-`workflow_dispatch` events. * Added input `use_build_cache` to control whether a `workflow_dispatch` event will restore the build cache. * Always save the build cache. * Reduced steps required when installing all packages through `install_all.sh`. * Cause `pyright` to install its associated NPM module during package install, making `actions/cache/save` cache the NPM module. * Remove the unused `matrix` strategy and use just an envvar for the Python version. Related #33
- Loading branch information
Showing
3 changed files
with
52 additions
and
46 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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
{ | ||
"description": "Use this file when testing the workflow_dispatch action locally with nektos/act.", | ||
"description": "Use this file when testing the workflow_dispatch action locally with nektos/act.", | ||
|
||
"action": "workflow_dispatch", | ||
"inputs": { | ||
"rewrite_dependencies": "false" | ||
} | ||
"action": "workflow_dispatch", | ||
"inputs": { | ||
"rewrite_dependencies": "true", | ||
"use_build_cache": "true" | ||
} | ||
} |
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