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

CI: Add support for GHC 8.10, stack and live-server testing #156

Merged
merged 7 commits into from
Jun 24, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Mark minio-hs builds GHC 8.4, 8.8 on windows experimental
  • Loading branch information
krisis committed Jun 23, 2020
commit 667be82f2364d7072ab8f32390a400deccffcc46
20 changes: 16 additions & 4 deletions .github/workflows/haskell-cabal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,30 @@ jobs:
cabal-build:

runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}

strategy:
fail-fast: false
matrix:
ghc: ['8.4', '8.6', '8.8', '8.10']
cabal: ['3.2']
os: [ubuntu-latest, macOS-latest, windows-latest]
exclude:
# Appears to be buggy to build in windows
os: [ubuntu-latest, macOS-latest]
experimental: [false]
include:
- ghc: 8.6
os: windows-latest
experimental: false
- ghc: 8.10
os: windows-latest
experimental: false
Copy link
Member Author

Choose a reason for hiding this comment

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

These are the same by default right? Don;t think we need these.


# Appears to be buggy to build in windows with ghc 8.4 and 8.8
- ghc: 8.4
os: windows-latest
experimental: true
- ghc: 8.8
os: windows-latest

experimental: true

steps:
- uses: actions/checkout@v2
Expand Down
21 changes: 16 additions & 5 deletions .github/workflows/haskell-stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,29 @@ jobs:
stack-build:

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

continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
ghc: ['8.8']
cabal: ['3.2']
os: [ubuntu-latest, macOS-latest, windows-latest]
exclude:
# Appears to be buggy to build in windows
os: [ubuntu-latest, macOS-latest]
experimental: [false]
include:
- ghc: 8.6
os: windows-latest
experimental: false
- ghc: 8.10
os: windows-latest
experimental: false

# Appears to be buggy to build in windows with ghc 8.4 and 8.8
- ghc: 8.4
os: windows-latest
experimental: true
Copy link
Member Author

Choose a reason for hiding this comment

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

In stack we are only building with 8.8, so we dont need these as well.

- ghc: 8.8
os: windows-latest

experimental: true

steps:
- uses: actions/checkout@v2
Expand Down