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

[Chore] Bump tested-with #20

Merged
merged 3 commits into from
Mar 9, 2024
Merged
Show file tree
Hide file tree
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
13 changes: 8 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: haskell/actions/hlint-setup@v2
- uses: haskell-actions/hlint-setup@v2
with:
version: '3.5'
- uses: haskell/actions/hlint-run@v2
- uses: haskell-actions/hlint-run@v2
with:
path: '["src/", "test/"]'
fail-on: warning
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
with:
submodules: 'true'

- uses: haskell/actions/setup@v2
- uses: haskell-actions/setup@v2
id: setup-haskell-cabal
name: Setup Haskell
with:
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
export GHCVER=${{ steps.ghcver.outputs.ghcver }}
yq -e '."tested-with" | contains(["GHC == " + strenv(GHCVER)])' package.yaml

- uses: haskell/actions/setup@v2
- uses: haskell-actions/setup@v2
name: Setup Haskell Stack
id: setup-haskell
with:
Expand All @@ -200,7 +200,10 @@ jobs:
run: |
stack config set system-ghc --global true
stack config set install-ghc --global false
stack config set resolver ${{ matrix.resolver }}
# this is a dirty hack because using short resolver name gets an old
# resolver for some reason
RESOLVER=$(curl -w '%{redirect_url}' https://www.stackage.org/${{ matrix.resolver }} | sed 's!.*/!!')
stack config set resolver $RESOLVER

- name: Configure for Weeder
run: |
Expand Down
2 changes: 1 addition & 1 deletion hsblst.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ build-type: Simple
tested-with:
GHC == 9.4.8
, GHC == 9.6.4
, GHC == 9.8.1
, GHC == 9.8.2
extra-source-files:
c-source/build/coff/add_mod_256-x86_64.s
c-source/build/coff/add_mod_384-x86_64.s
Expand Down
2 changes: 1 addition & 1 deletion package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ verbatim:
tested-with:
- GHC == 9.4.8
- GHC == 9.6.4
- GHC == 9.8.1
- GHC == 9.8.2

default-extensions:
- AllowAmbiguousTypes
Expand Down
Loading