Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix autofixer workflow installation process #340

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 6 additions & 12 deletions .github/workflows/resyntax-autofixer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading