File tree Expand file tree Collapse file tree 3 files changed +16
-17
lines changed Expand file tree Collapse file tree 3 files changed +16
-17
lines changed Original file line number Diff line number Diff line change 66
77jobs :
88 call-workflow :
9- uses : byteverse/.github/.github/workflows/build.yaml@main
10- secrets : inherit
9+ uses : byteverse/.github/.github/workflows/build-matrix.yaml@main
1110 with :
12- release : false
11+ cabal-file : array-builder.cabal
Original file line number Diff line number Diff line change 66
77jobs :
88 call-workflow :
9- uses : byteverse/.github/.github/workflows/build .yaml@main
9+ uses : byteverse/.github/.github/workflows/release .yaml@main
1010 secrets : inherit
11- with :
12- release : true
Original file line number Diff line number Diff line change @@ -12,16 +12,22 @@ maintainer: amartin@layer3com.com
1212copyright : 2019 Andrew Martin
1313category : Data
1414extra-doc-files : CHANGELOG.md
15+ tested-with : GHC == 9.4.8 || == 9.6.3 || == 9.8.1
16+
17+ common build-settings
18+ default-language : Haskell2010
19+ ghc-options : -Wall -Wunused-packages
1520
1621library
22+ import : build-settings
1723 exposed-modules :
1824 Data.Builder
1925 Data.Builder.Catenable
2026 Data.Builder.Catenable.Bytes
2127 Data.Builder.Catenable.Text
2228 Data.Builder.ST
2329
24- other-modules : Compat
30+ other-modules : Compat
2531 build-depends :
2632 , array-chunks >= 0.1 && < 0.2
2733 , base >= 4.12 && < 5
@@ -30,33 +36,29 @@ library
3036 , bytestring >= 0.11.5 && < 0.12
3137 , natural-arithmetic >= 0.1.3 && < 0.3
3238 , primitive >= 0.6.4 && < 0.10
33- , run-st >= 0.1 && < 0.2
3439 , text-short >= 0.1.3 && < 0.2
3540
36- hs-source-dirs : src
41+ hs-source-dirs : src
3742
3843 if impl(ghc >= 8.9 )
3944 hs-source-dirs : src-post-8.9
4045
4146 else
4247 hs-source-dirs : src-pre-8.9
4348
44- default-language : Haskell2010
45- ghc-options : -Wall -O2
49+ ghc-options : -O2
4650
4751test-suite test
48- type : exitcode-stdio-1.0
49- hs-source-dirs : test
50- main-is : Main.hs
52+ import : build-settings
53+ type : exitcode-stdio-1.0
54+ hs-source-dirs : test
55+ main-is : Main.hs
5156 build-depends :
5257 , array-builder
5358 , base
5459 , tasty
5560 , tasty-hunit
5661
57- ghc-options : -Wall -O2
58- default-language : Haskell2010
59-
6062source-repository head
6163 type : git
6264 location : git://github.com/byteverse/array-builder.git
You can’t perform that action at this time.
0 commit comments