diff options
| author | John MacFarlane <[email protected]> | 2023-03-16 09:27:51 -0700 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2023-03-16 09:27:51 -0700 |
| commit | 74328eba7e8a3d6ce921fbfa17e2153193460dc2 (patch) | |
| tree | 2813180a2c81c5fde7cb9e16af587b76671413df /.github/workflows | |
| parent | 84262f2d0649c1be7f156d7b29c7a2aeb47d263d (diff) | |
CI/Nightly: use ghc 9.4 for windows build.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/nightly.yml | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4fe0951ce..850ba89fc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -159,6 +159,10 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Install ghc + run: | + ghcup install ghc --set 9.4.4 + # declare/restore cached things - name: Cache cabal global package db diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index ba4a60dfb..f6779ee9c 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -44,6 +44,9 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Install ghc + run: | + ghcup install ghc --set 9.4.4 - name: Install dependencies run: | cabal update |
