-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -19,6 +19,11 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: restore stack caches | ||
uses: ./.github/workflows/actions/restore-stack-cache | ||
with: | ||
cache-prefix: pre-release | ||
|
||
- name: install stack | ||
uses: ./.github/workflows/actions/install-stack | ||
|
||
|
@@ -29,7 +34,17 @@ jobs: | |
git config --global user.email "[email protected]" | ||
- name: build | ||
run: stack --no-terminal build --flag unison-parser-typechecker:optimized | ||
run: | | ||
# unison-cli embeds version numbers using TH | ||
# so it needs to be forced to rebuild to ensure those are updated. | ||
stack clean unison-cli | ||
stack --no-terminal build --flag unison-parser-typechecker:optimized | ||
- name: save stack caches | ||
uses: ./.github/workflows/actions/save-stack-cache | ||
with: | ||
cache-prefix: pre-release | ||
|
||
- name: fetch latest Unison Local UI and package with ucm | ||
run: | | ||
|