Skip to content

Commit 0cf3b36

Browse files
committed
Exclude some macOS GHC versions because they fail to build
* 8.10.7 ``` <no location info>: error: Warning: Couldn't figure out LLVM version! Make sure you have installed LLVM between [9 and 13) ``` ghc: could not execute: opt * 9.0.1 ``` Error: All install methods for ghc 9.0.1 failed ``` * 9.0.2 ``` <no location info>: error: Warning: Couldn't figure out LLVM version! Make sure you have installed LLVM between [9 and 13) ``` * 9.2.3 ``` Failed to build microaeson-0.1.0.1. The failure occurred during the configure step. Build log ( /Users/runner/.cabal/logs/ghc-9.2.3/mcrsn-0.1.0.1-39e5748c.log ): Error: cabal: Failed to build Cabal-syntax-3.12.0.0 (which is required by Configuring library for microaeson-0.1.0.1.. Error: cabal-3.10.3.0: The program 'alex' version >=3.2.0 is required but the version of /Users/runner/.cabal/store/ghc-9.2.3/lx-3.5.1.0-e5169770/bin/alex could not be determined. test:stan-test from stan-0.1.2.1 and exe:stan from stan-0.1.2.1). The build process segfaulted (i.e. SIGSEGV). Failed to build microaeson-0.1.0.1 (which is required by test:stan-test from stan-0.1.2.1 and exe:stan from stan-0.1.2.1). See the build log above for details. ``` * 9.4.1 ``` Failed to build microaeson-0.1.0.1. The failure occurred during the configure step. Build log ( /Users/runner/.cabal/logs/ghc-9.4.1/mcrsn-0.1.0.1-910e64b6.log ): Configuring library for microaeson-0.1.0.1.. Error: cabal-3.10.3.0: The program 'alex' version >=3.2.0 is required but the version of /Users/runner/.cabal/store/ghc-9.4.1/lx-3.5.1.0-92603e3d/bin/alex could not be determined. Error: cabal: Failed to build Cabal-syntax-3.12.0.0 (which is required by test:stan-test from stan-0.1.2.1 and exe:stan from stan-0.1.2.1). The build process segfaulted (i.e. SIGSEGV). Failed to build microaeson-0.1.0.1 (which is required by test:stan-test from stan-0.1.2.1 and exe:stan from stan-0.1.2.1). See the build log above for details. Failed to build pretty-show-1.10 (which is required by test:stan-test from stan-0.1.2.1). The build process segfaulted (i.e. SIGSEGV). ```
1 parent a610d74 commit 0cf3b36

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,16 @@ jobs:
4040
exclude:
4141
- os: macOS-latest
4242
ghc: 8.8.4
43+
- os: macOS-latest
44+
ghc: 8.10.7
45+
- os: macOS-latest
46+
ghc: 9.0.1
47+
- os: macOS-latest
48+
ghc: 9.0.2
49+
- os: macOS-latest
50+
ghc: 9.2.3
51+
- os: macOS-latest
52+
ghc: 9.4.1
4353
- os: windows-latest
4454
ghc: 8.8.4
4555
steps:

0 commit comments

Comments
 (0)