Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
parsec
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Glasgow Haskell Compiler
Packages
parsec
Commits
f1171a4b
Unverified
Commit
f1171a4b
authored
3 years ago
by
Oleg Grenrus
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #154 from haskell/mtl-2.3
Allow mtl-2.3
parents
4031676e
0ada72f7
No related branches found
Branches containing commit
Tags
v3.1.15.1
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.github/workflows/haskell-ci.yml
+8
-0
8 additions, 0 deletions
.github/workflows/haskell-ci.yml
cabal.haskell-ci
+6
-0
6 additions, 0 deletions
cabal.haskell-ci
parsec.cabal
+2
-2
2 additions, 2 deletions
parsec.cabal
with
16 additions
and
2 deletions
.github/workflows/haskell-ci.yml
+
8
−
0
View file @
f1171a4b
...
...
@@ -259,3 +259,11 @@ jobs:
run
:
|
rm -f cabal.project.local
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks all
-
name
:
prepare for constraint sets
run
:
|
rm -f cabal.project.local
-
name
:
constraint set mtl-2.3
run
:
|
if [ $((HCNUMVER >= 80600)) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --enable-tests --disable-benchmarks --constraint='mtl ^>=2.3' --dependencies-only -j2 all ; fi
if [ $((HCNUMVER >= 80600)) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --enable-tests --disable-benchmarks --constraint='mtl ^>=2.3' all ; fi
if [ $((HCNUMVER >= 80600)) -ne 0 ] ; then $CABAL v2-test $ARG_COMPILER --enable-tests --disable-benchmarks --constraint='mtl ^>=2.3' all ; fi
This diff is collapsed.
Click to expand it.
cabal.haskell-ci
+
6
−
0
View file @
f1171a4b
branches: master
constraint-set mtl-2.3
ghc: >=8.6
constraints: mtl ^>=2.3
tests: True
run-tests: True
This diff is collapsed.
Click to expand it.
parsec.cabal
+
2
−
2
View file @
f1171a4b
cabal-version: 1.12
name: parsec
version: 3.1.15.
0
version: 3.1.15.
1
synopsis: Monadic parser combinators
description: Parsec is designed from scratch as an industrial-strength parser
...
...
@@ -65,7 +65,7 @@ library
build-depends:
base >= 4.5.1.0 && < 4.18,
mtl >= 2.1.3.1 && < 2.
3
,
mtl >= 2.1.3.1 && < 2.
4
,
bytestring >= 0.9.2.1 && < 0.12,
text (>= 1.2.3.0 && < 1.3)
|| (>= 2.0 && < 2.1)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment