-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump CI to GHC 9.10.0 and latest minor versions
Bump HTF to a version without custom setup to work around haskell/cabal#9917
- Loading branch information
1 parent
28a41fc
commit 6c9c244
Showing
12 changed files
with
86 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
resolver: lts-22.0 | ||
compiler: ghc-9.6.3 | ||
resolver: lts-22.18 | ||
compiler: ghc-9.6.4 | ||
compiler-check: newer-minor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
resolver: nightly-2023-12-19 | ||
compiler: ghc-9.8.1 | ||
resolver: nightly-2024-04-22 | ||
compiler: ghc-9.8.2 | ||
compiler-check: newer-minor | ||
|
||
packages: | ||
- source | ||
- testing | ||
|
||
extra-deps: | ||
- aeson-2.2.1.0 | ||
- th-abstraction-0.6.0.0 | ||
# extra-deps: | ||
# - aeson-2.2.1.0 | ||
# - th-abstraction-0.6.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2 ^ (2 ** 2) |
10 changes: 10 additions & 0 deletions
10
testing/regression-tests/479_LabelsCaseSensitive/good01.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
Parse Successful! | ||
|
||
[Abstract Syntax] | ||
|
||
Eexp (EInt 2) (EExp (EInt 2) (EInt 2)) | ||
|
||
[Linearized tree] | ||
|
||
2 ^ (2 ** 2) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
-- Andreas, 2024-04-23, issue #479: | ||
-- Support case-variants in labels also in the C backend. | ||
|
||
Eexp. Exp ::= Exp "^" Exp1 ; | ||
EExp. Exp ::= Exp "**" Exp1 ; | ||
EInt. Exp1 ::= Integer ; | ||
|
||
coercions Exp 1 ; | ||
|
||
comment "--" ; |