-
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix autofixer workflow installation process
Hopefully this fixes the failure observed [here](https://github.com/racket/gui/actions/runs/11564770291/job/32190604572).
- Loading branch information
Showing
1 changed file
with
6 additions
and
12 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 |
---|---|---|
|
@@ -16,20 +16,14 @@ jobs: | |
steps: | ||
- name: Checkout code | ||
uses: actions/[email protected] | ||
- uses: Bogdanp/setup-racket@v1.10 | ||
- uses: Bogdanp/setup-racket@v1.11 | ||
with: | ||
architecture: 'x64' | ||
distribution: 'minimal' | ||
version: 'current' | ||
version: current | ||
local_catalogs: $GITHUB_WORKSPACE | ||
dest: '"${HOME}/racketdist-current-CS"' | ||
sudo: never | ||
- name: Install and setup | ||
run: | | ||
raco pkg install --auto compiler-lib | ||
racket -l- pkg/dirs-catalog --link --check-metadata pkgs-catalog . | ||
echo file://`pwd`/pkgs-catalog/ > catalog-config.txt | ||
raco pkg config catalogs >> catalog-config.txt | ||
raco pkg config --set catalogs `cat catalog-config.txt` | ||
raco pkg install -i --auto --no-setup gui-lib/ gui-doc/ gui/ tex-table/ gui-test/ | ||
raco setup --pkgs gui gui-lib gui-test tex-table | ||
run: raco pkg install --auto gui-doc gui-lib gui-test gui text-table | ||
- name: Create a Resyntax pull request | ||
uses: jackfirth/[email protected] | ||
with: | ||
|