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

Update supported GHC list #58

Closed
Closed
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
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
os:
- ubuntu-16.04 # https://launchpad.net/~hvr/+archive/ubuntu/ghc?field.series_filter=xenial
- ubuntu-18.04 # latest # https://launchpad.net/~hvr/+archive/ubuntu/ghc?field.series_filter=xenial
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@parsonsmatt not a big thing, but I guess we should remove the latest from the comment. Other than that it's good to go.

ghc:
- '7.4.2'
- '7.6.3'
Expand All @@ -28,12 +28,17 @@ jobs:
- '8.6'
- '8.8'
- '8.10'
- '9.0'
- '9.2'
include:
- os: macos-latest
ghc: latest
- os: windows-latest
ghc: latest
steps:
- name: Install libnuma (avoid a problem with ghc 8.4 somehow)
if: ${{ matrix.os == 'ubuntu-18.04' }}
run: sudo apt-get install -y libnuma-dev
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v1
with:
Expand Down