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 macos ci and, add lts-20/22, remove lts-14 #1839

Merged
merged 3 commits into from
Jul 16, 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
25 changes: 16 additions & 9 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,20 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
args:
#- "--resolver nightly"
- "--resolver nightly-2022-02-11"
- "--resolver lts-22"
- "--resolver lts-20"
- "--resolver lts-18"
- "--resolver lts-16"
- "--resolver lts-14"
# Bugs in GHC make it crash too often to be worth running
exclude:
- os: windows-latest
args: "--resolver nightly"
# llvm too new on macos-latest for ghc 8
- os: macos-latest
args: "--resolver lts-16"
args: "--resolver lts-18"
- os: macos-latest
args: "--resolver lts-14"
args: "--resolver lts-16"

steps:
- name: Clone project
uses: actions/checkout@v2
uses: actions/checkout@v4

# Getting weird OS X errors...
# - name: Cache dependencies
Expand All @@ -42,6 +39,16 @@ jobs:
# restore-keys: |
# ${{ runner.os }}-${{ matrix.resolver }}-

- name: Install stack if needed
shell: bash
run: |
set -ex
if [[ "${{ matrix.os }}" == "macos-latest" ]]
then
# macos-latest does not include Haskell tools as of 2024-05-06.
curl -sSL https://get.haskellstack.org/ | sh
fi

- name: Build and run tests
shell: bash
run: |
Expand Down
Loading