-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for GHC 9.10, remove support for GHC 9.4 (#17)
* Upgrade to GHC 9.10 * Fix build with GHC 9.10
- Loading branch information
Showing
13 changed files
with
147 additions
and
298 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
updates: | ||
- directory: / | ||
package-ecosystem: github-actions | ||
schedule: | ||
interval: weekly | ||
version: 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
jobs: | ||
build: | ||
name: GHC ${{ matrix.ghc }} on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: mkdir artifact | ||
- id: haskell | ||
uses: haskell-actions/setup@v2 | ||
with: | ||
ghc-version: ${{ matrix.ghc }} | ||
- run: ghc-pkg list | ||
- run: cabal sdist --output-dir artifact | ||
- run: cabal configure --flags=pedantic --jobs | ||
- run: cat cabal.project.local | ||
- run: cp cabal.project.local artifact | ||
- run: cabal freeze | ||
- run: cat cabal.project.freeze | ||
- run: cp cabal.project.freeze artifact | ||
- run: cabal outdated --v2-freeze-file | ||
- uses: actions/cache@v4 | ||
with: | ||
key: ${{ matrix.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }} | ||
path: ${{ steps.haskell.outputs.cabal-store }} | ||
restore-keys: ${{ matrix.os }}-${{ matrix.ghc }}- | ||
- run: cabal build --only-download | ||
- run: cabal build --only-dependencies | ||
- run: cabal build | ||
- run: tar --create --file artifact.tar --verbose artifact | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: ratel-wai-${{ github.sha }}-${{ matrix.os }}-${{ matrix.ghc }} | ||
path: artifact.tar | ||
strategy: | ||
matrix: | ||
include: | ||
- ghc: '9.10' | ||
os: macos-13 | ||
- ghc: '9.10' | ||
os: macos-14 | ||
- ghc: 9.6 | ||
os: ubuntu-22.04 | ||
- ghc: 9.8 | ||
os: ubuntu-22.04 | ||
- ghc: '9.10' | ||
os: ubuntu-22.04 | ||
- ghc: '9.10' | ||
os: windows-2022 | ||
cabal: | ||
name: Cabal | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: cabal check | ||
gild: | ||
name: Gild | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: tfausak/cabal-gild-setup-action@v2 | ||
- run: cabal-gild --input ratel-wai.cabal --mode check | ||
hlint: | ||
name: HLint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: haskell-actions/hlint-setup@9e09cc3653fc13702000a35f638a27b064adfbbe | ||
- uses: haskell-actions/hlint-run@v2 | ||
with: | ||
fail-on: status | ||
ormolu: | ||
name: Ormolu | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: haskell-actions/run-ormolu@v15 | ||
release: | ||
if: ${{ github.event_name == 'release' }} | ||
name: Release | ||
needs: build | ||
permissions: | ||
contents: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: ratel-wai-${{ github.sha }}-ubuntu-22.04-9.10 | ||
- run: tar --extract --file artifact.tar --verbose | ||
- uses: softprops/action-gh-release@v2 | ||
with: | ||
files: artifact/ratel-wai-${{ github.event.release.tag_name }}.tar.gz | ||
- run: cabal upload --publish --username '${{ secrets.HACKAGE_USERNAME }}' --password '${{ secrets.HACKAGE_PASSWORD }}' artifact/ratel-wai-${{ github.event.release.tag_name }}.tar.gz | ||
name: CI | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
push: | ||
branches: | ||
- main | ||
release: | ||
types: | ||
- created | ||
schedule: | ||
- cron: 0 0 * * 1 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,10 @@ | ||
[ | ||
{ | ||
"group": { | ||
"enabled": true, | ||
"name": "dollar" | ||
} | ||
}, | ||
{ | ||
"group": { | ||
"enabled": true, | ||
"name": "generalise" | ||
} | ||
}, | ||
{ | ||
"ignore": { | ||
"name": "Use lambda-case" | ||
} | ||
}, | ||
{ | ||
"ignore": { | ||
"name": "Use tuple-section" | ||
} | ||
} | ||
] | ||
- group: | ||
enabled: true | ||
name: dollar | ||
- group: | ||
enabled: true | ||
name: generalise | ||
- ignore: | ||
name: Use lambda-case | ||
- ignore: | ||
name: Use tuple-section |
File renamed without changes.
File renamed without changes.
Oops, something went wrong.