-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #83 from haskell/ci-9.10
Bump CI to GHC 9.10.0
- Loading branch information
Showing
6 changed files
with
111 additions
and
32 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -6,13 +6,25 @@ synopsis: External testsuite for stm package | |
category: Benchmarking | ||
license: BSD-3-Clause | ||
maintainer: [email protected] | ||
tested-with: GHC==9.6.2, GHC==9.4.7, GHC==9.2.8, GHC==9.0.2, GHC==8.10.7, GHC==8.8.4, GHC==8.6.5, GHC==8.4.4, GHC==8.2.2, GHC==8.0.2 | ||
description: | ||
The benchmarks are in a separate project to avoid cyclic dependencies. | ||
|
||
tested-with: | ||
GHC == 9.8.2 | ||
GHC == 9.6.4 | ||
GHC == 9.4.8 | ||
GHC == 9.2.8 | ||
GHC == 9.0.2 | ||
GHC == 8.10.7 | ||
GHC == 8.8.4 | ||
GHC == 8.6.5 | ||
GHC == 8.4.4 | ||
GHC == 8.2.2 | ||
GHC == 8.0.2 | ||
|
||
benchmark chanbench | ||
type: exitcode-stdio-1.0 | ||
main-is: ChanBench.hs | ||
build-depends: base >= 4.9 && < 4.20, stm, async >= 2.0, tasty, tasty-bench | ||
build-depends: base >= 4.9 && < 4.21, stm, async >= 2.0, tasty, tasty-bench | ||
default-language: Haskell2010 | ||
ghc-options: -O2 -threaded -with-rtsopts=-N |
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,3 +1,4 @@ | ||
jobs-selection: any | ||
install-dependencies: False | ||
installed: +all -exceptions -filepath | ||
distribution: bionic |
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,4 +1,7 @@ | ||
packages: . testsuite/ | ||
packages: . testsuite/ bench/ | ||
|
||
package testsuite | ||
tests: true | ||
|
||
package stm-bench | ||
benchmarks: true |
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
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 |
---|---|---|
|
@@ -6,14 +6,32 @@ synopsis: External testsuite for stm package | |
category: Testing | ||
license: BSD-3-Clause | ||
maintainer: [email protected] | ||
tested-with: GHC==9.6.2, GHC==9.4.7, GHC==9.2.8, GHC==9.0.2, GHC==8.10.7, GHC==8.8.4, GHC==8.6.5, GHC==8.4.4, GHC==8.2.2, GHC==8.0.2, GHC==7.10.3, GHC==7.8.4, GHC==7.6.3, GHC==7.4.2, GHC==7.2.2 | ||
description: | ||
This testsuite is intended to be compatible with different versions | ||
of `stm` (via use of @CPP@ if needed) in order to more easily | ||
verify regression tests. | ||
. | ||
See also @README.md@ for more information. | ||
|
||
tested-with: | ||
GHC == 9.10.0 | ||
GHC == 9.8.2 | ||
GHC == 9.6.4 | ||
GHC == 9.4.8 | ||
GHC == 9.2.8 | ||
GHC == 9.0.2 | ||
GHC == 8.10.7 | ||
GHC == 8.8.4 | ||
GHC == 8.6.5 | ||
GHC == 8.4.4 | ||
GHC == 8.2.2 | ||
GHC == 8.0.2 | ||
GHC == 7.10.3 | ||
GHC == 7.8.4 | ||
GHC == 7.6.3 | ||
GHC == 7.4.2 | ||
GHC == 7.2.2 | ||
|
||
test-suite stm | ||
hs-source-dirs: src | ||
|
||
|
@@ -36,7 +54,7 @@ test-suite stm | |
|
||
-- | ||
build-depends: | ||
, base >= 4.4 && < 4.20 | ||
, base >= 4.4 && < 4.21 | ||
, test-framework ^>= 0.8.2.0 | ||
, test-framework-hunit ^>= 0.3.0.2 | ||
, HUnit ^>= 1.6.0.0 | ||
|