File tree Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 8
8
#
9
9
# For more information, see https://github.com/haskell-CI/haskell-ci
10
10
#
11
- # version: 0.13.20211116
11
+ # version: 0.13.20211226
12
12
#
13
- # REGENDATA ("0.13.20211116 ",["github","cabal.project"])
13
+ # REGENDATA ("0.13.20211226 ",["github","cabal.project"])
14
14
#
15
15
name : Haskell-CI
16
16
on :
@@ -233,6 +233,16 @@ jobs:
233
233
- name : prepare for constraint sets
234
234
run : |
235
235
rm -f cabal.project.local
236
+ - name : constraint set text-2.0
237
+ run : |
238
+ $CABAL v2-build $ARG_COMPILER --enable-tests --disable-benchmarks --constraint='text ^>=2.0' --dependencies-only -j2 all
239
+ $CABAL v2-build $ARG_COMPILER --enable-tests --disable-benchmarks --constraint='text ^>=2.0' all
240
+ $CABAL v2-test $ARG_COMPILER --enable-tests --disable-benchmarks --constraint='text ^>=2.0' all
241
+ - name : constraint set text-1.2
242
+ run : |
243
+ $CABAL v2-build $ARG_COMPILER --enable-tests --disable-benchmarks --constraint='text ^>=1.2.3.0' --dependencies-only -j2 all
244
+ $CABAL v2-build $ARG_COMPILER --enable-tests --disable-benchmarks --constraint='text ^>=1.2.3.0' all
245
+ $CABAL v2-test $ARG_COMPILER --enable-tests --disable-benchmarks --constraint='text ^>=1.2.3.0' all
236
246
- name : constraint set bytestring-0.11.2.0
237
247
run : |
238
248
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='bytestring >= 0.11.2.0' --dependencies-only -j2 all
Original file line number Diff line number Diff line change @@ -25,3 +25,13 @@ constraint-set ordered-keymap-off
25
25
26
26
constraint-set bytestring-0.11.2.0
27
27
constraints: bytestring >= 0.11.2.0
28
+
29
+ constraint-set text-1.2
30
+ constraints: text ^>=1.2.3.0
31
+ tests: True
32
+ run-tests: True
33
+
34
+ constraint-set text-2.0
35
+ constraints: text ^>=2.0
36
+ tests: True
37
+ run-tests: True
You can’t perform that action at this time.
0 commit comments