-
Notifications
You must be signed in to change notification settings - Fork 701
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump Cabal version to 3.7 for development #7571
Conversation
.github/workflows/windows.yml
Outdated
@@ -111,4 +111,4 @@ jobs: | |||
cabal v2-run cabal-install:unit-tests -- --pattern "! (/FileMonitor/ || /VCS/ || /Get/)" | |||
- name: cabal-tests | |||
# Using only one job, -j1, to fail less. | |||
run: cabal v2-run cabal-testsuite:cabal-tests -- -j1 --with-cabal=dist-newstyle\build\x86_64-windows\ghc-8.10.4\cabal-install-3.6.0.0\x\cabal\build\cabal\cabal.exe | |||
run: cabal v2-run cabal-testsuite:cabal-tests -- -j1 --with-cabal=$(cabal list-bin exe:cabal) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The windows executor is powershell, so bourne shell stuff doesn't work.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, just noticed. Tried something for powershell, if that still doesn't work I'll just resort to not improving this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please make improvements in separate commits. It would be great to have "this is how you bump version" commits, which don't do anything else.
57085bb
to
a47d2b4
Compare
The last remaining CI error seems to stem from some hardwired paths. |
a47d2b4
to
27a7228
Compare
Ping, I would appreciate the merge :) |
@Mergifyio update |
Command
|
closes #7569
Please also shortly describe how you tested your change. Bonus points for added tests!
The changes have been created by manually looking for
version:(\s*)3.6.0.0
, replacing them withversion:$13.7.0.0
, then grepping every occurrence of3.6.0.0
in cabal files with3.7.0.0
. Thenmake bootstrap-plans-linux bootstrap-jsons-linux
, followed by updating the zinza template and thenmake github-actions
.