Skip to content

Commit 31e4073

Browse files
committed
Fix CI
1 parent 0552854 commit 31e4073

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.cirrus.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
task:
22
name: FreeBSD
33
freebsd_instance:
4-
image_family: freebsd-13-2
4+
image_family: freebsd-14-0
55
install_script: pkg install -y ghc hs-cabal-install git autoconf
66
script:
77
- cabal update
@@ -26,7 +26,7 @@ task:
2626
name: NetBSD
2727
compute_engine_instance:
2828
image_project: pg-ci-images
29-
image: family/pg-ci-netbsd-vanilla-9-3
29+
image: family/pg-ci-netbsd-vanilla-10-0
3030
platform: netbsd
3131
install_script:
3232
- export PKG_PATH="http://cdn.NetBSD.org/pub/pkgsrc/packages/NetBSD/$(uname -p)/$(uname -r|cut -f '1 2' -d.)/All/"

file-io.cabal

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ test-suite T15
6565
main-is: T15.hs
6666
type: exitcode-stdio-1.0
6767
default-language: Haskell2010
68-
build-depends: base, tasty, tasty-hunit, file-io, filepath, temporary
68+
build-depends: base >=4.13.0.0 && <5, tasty, tasty-hunit, file-io, filepath, temporary
6969
ghc-options: -Wall -threaded -rtsopts "-with-rtsopts=-N10"
7070
if os(windows)
7171
build-depends: Win32 >=2.13.3.0
@@ -76,40 +76,40 @@ test-suite T15Win
7676
type: exitcode-stdio-1.0
7777
default-language: Haskell2010
7878
if os(windows)
79-
build-depends: base, tasty, tasty-hunit, file-io, filepath, temporary, Win32 >=2.13.3.0
79+
build-depends: base >=4.13.0.0 && <5, tasty, tasty-hunit, file-io, filepath, temporary, Win32 >=2.13.3.0
8080
else
81-
build-depends: base
81+
build-depends: base >=4.13.0.0 && <5
8282
ghc-options: -Wall -threaded -rtsopts "-with-rtsopts=-N10"
8383

8484
test-suite T14
8585
hs-source-dirs: tests
8686
main-is: T14.hs
8787
type: exitcode-stdio-1.0
8888
default-language: Haskell2010
89-
build-depends: base, file-io, filepath, temporary
89+
build-depends: base >=4.13.0.0 && <5, file-io, filepath, temporary
9090
ghc-options: -Wall
9191

9292
test-suite T8
9393
hs-source-dirs: tests
9494
main-is: T8.hs
9595
type: exitcode-stdio-1.0
9696
default-language: Haskell2010
97-
build-depends: base, bytestring, file-io, filepath, temporary
97+
build-depends: base >=4.13.0.0 && <5, bytestring, file-io, filepath, temporary
9898
ghc-options: -Wall -threaded
9999

100100
test-suite CLC237
101101
hs-source-dirs: tests
102102
main-is: CLC237.hs
103103
type: exitcode-stdio-1.0
104104
default-language: Haskell2010
105-
build-depends: base, file-io, filepath, temporary
105+
build-depends: base >=4.13.0.0 && <5, file-io, filepath, temporary
106106
ghc-options: -Wall
107107

108108
test-suite Properties
109109
hs-source-dirs: tests
110110
main-is: Properties.hs
111111
type: exitcode-stdio-1.0
112112
default-language: Haskell2010
113-
build-depends: base, bytestring, tasty, tasty-hunit, file-io, filepath, temporary
113+
build-depends: base >=4.13.0.0 && <5, bytestring, tasty, tasty-hunit, file-io, filepath, temporary
114114
ghc-options: -Wall -threaded -rtsopts "-with-rtsopts=-N10"
115115

0 commit comments

Comments
 (0)