Skip to content

Commit 9b614f4

Browse files
authored
Merge pull request #136 from haskell/wip/teo/support-9.12
Support GHC-9.12
2 parents b830470 + e678587 commit 9b614f4

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@ jobs:
99
strategy:
1010
matrix:
1111
ghc:
12+
- "9.12.1"
1213
- "9.10.1"
13-
- "9.8.2"
14-
- "9.6.4"
14+
- "9.8.4"
15+
- "9.6.6"
1516
- "9.4.8"
16-
- "9.2.2"
17+
- "9.2.8"
1718
- "9.0.2"
1819
- "8.10.7"
1920
- "8.8.4"
@@ -22,6 +23,9 @@ jobs:
2223
os:
2324
- ubuntu-latest
2425
include:
26+
- os: macos-latest
27+
ghc: "9.12.1"
28+
cabal: "3.12.1.0"
2529
- os: macos-latest
2630
ghc: "9.10.1"
2731
cabal: "3.12.1.0"

threadscope.cabal

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,12 @@ Extra-source-files: include/windows_cconv.h
3939
Tested-with: GHC == 8.8.4
4040
GHC == 8.10.7
4141
GHC == 9.0.2
42-
GHC == 9.2.2
42+
GHC == 9.2.8
43+
GHC == 9.4.8
44+
GHC == 9.6.6
45+
GHC == 9.8.4
46+
GHC == 9.10.1
47+
GHC == 9.12.1
4348

4449
source-repository head
4550
type: git
@@ -60,10 +65,10 @@ Executable threadscope
6065
containers >= 0.2 && < 0.8,
6166
deepseq >= 1.1,
6267
text < 2.2,
63-
time >= 1.1 && < 1.14,
68+
time >= 1.1 && < 1.15,
6469
bytestring < 0.13,
6570
file-embed < 0.1,
66-
template-haskell < 2.23,
71+
template-haskell < 2.24,
6772
temporary >= 1.1 && < 1.4
6873

6974
include-dirs: include

0 commit comments

Comments
 (0)