Skip to content

Commit

Permalink
Experiment with msys2 ucrt64 environment in CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewFluet committed Jan 1, 2025
1 parent c555607 commit 26807fe
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/install-bootstrap-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@ runs:
pacboy --noconfirm -S --needed gcc:p gmp-devel:
mkdir boot && cd boot
curl -sOL https://github.com/MLton/mlton/releases/download/on-20241230-release/mlton-20241230-1.amd64-mingw.windows-2022_MINGW64.tgz
tar xzf https://github.com/MLton/mlton/releases/download/on-20241230-release/mlton-20241230-1.amd64-mingw.windows-2022_MINGW64.tgz --exclude='*/share' --strip-components=1
rm https://github.com/MLton/mlton/releases/download/on-20241230-release/mlton-20241230-1.amd64-mingw.windows-2022_MINGW64.tgz
tar xzf mlton-20241230-1.amd64-mingw.windows-2022_MINGW64.tgz --exclude='*/share' --strip-components=1
rm mlton-20241230-1.amd64-mingw.windows-2022_MINGW64.tgz
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,15 @@ jobs:
cc: "gcc"
codegen: "c"

- runner: windows-2022
msystem: ucrt64
cc: "gcc"
codegen: "amd64"
- runner: windows-2022
msystem: ucrt64
cc: "gcc"
codegen: "c"

runs-on: ${{ matrix.runner }}

defaults:
Expand Down

0 comments on commit 26807fe

Please sign in to comment.