Skip to content

Commit cfa50f2

Browse files
more bounds relaxing + cabal test output to console
1 parent a4f13a0 commit cfa50f2

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

.github/workflows/cabal.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
with:
3131
ghc-version: ${{ matrix.ghc }}
3232
cabal-version: ${{ matrix.cabal }}
33-
- run: cabal v2-update
34-
- run: cabal v2-freeze $CONFIG
33+
- run: cabal update
34+
- run: cabal freeze $CONFIG
3535
- uses: actions/cache@v2
3636
with:
3737
path: |
@@ -40,5 +40,5 @@ jobs:
4040
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
4141
restore-keys: |
4242
${{ runner.os }}-${{ matrix.ghc }}-
43-
- run: cabal v2-build $CONFIG
44-
- run: cabal v2-test $CONFIG
43+
- run: cabal build $CONFIG
44+
- run: cabal test $CONFIG --show-details=streaming --log=/dev/stdout

.github/workflows/stack.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,13 @@ jobs:
3838
os: [ubuntu-latest, macOS-latest]
3939
# use this to specify what resolvers and ghc to use
4040
plan:
41-
- { resolver: "--resolver lts-9" } # ghc-8.0.2
42-
- { resolver: "--resolver lts-11" } # ghc-8.2.2
43-
- { resolver: "--resolver lts-12" } # ghc-8.4.4
41+
# - { resolver: "--resolver lts-9" } # ghc-8.0.2
42+
# - { resolver: "--resolver lts-11" } # ghc-8.2.2
43+
# - { resolver: "--resolver lts-12" } # ghc-8.4.4
4444
- { resolver: "--resolver lts-14" } # ghc-8.6.5
45+
- { resolver: "--resolver lts-16" }
4546
- { resolver: "--resolver nightly" }
46-
- { resolver: "" }
47+
# - { resolver: "" }
4748
# use this to include any dependencies from OS package managers
4849
include: []
4950
# - os: macOS-latest

quickjs-hs.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ library
3232
src
3333
build-depends:
3434
base >=4.7 && <5
35-
, aeson >=1.1 && <1.5
35+
, aeson >=1.1 && <1.6
3636
, bytestring >=0.10 && <0.11
3737
, containers >=0.5 && <0.7
3838
, exceptions >=0.8 && <0.11

0 commit comments

Comments
 (0)