Skip to content

Commit 743762f

Browse files
committed
don't build hiedb-indexer with GHC 9.4, it's not ready
1 parent d21ec9d commit 743762f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ jobs:
171171
- name: Build glean-clang
172172
run: make glean-clang
173173

174-
- if: matrix.ghc != '8.6.5'
174+
- if: matrix.ghc != '8.6.5' && matrix.ghc != '9.4.7'
175175
name: Build hiedb-indexer
176176
run: make glean-hiedb
177177

glean.cabal.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1085,7 +1085,7 @@ executable hack-derive
10851085
-- Haskell indexer via hiedb
10861086
executable hiedb-indexer
10871087
import: deps, fb-haskell, exe
1088-
if impl(ghc >= 8.8)
1088+
if impl(ghc >= 8.8 && < 9.4)
10891089
buildable: True
10901090
else
10911091
buildable: False

0 commit comments

Comments
 (0)