File tree Expand file tree Collapse file tree 7 files changed +16
-21
lines changed
test/integration/tests/2433-ghc-by-version Expand file tree Collapse file tree 7 files changed +16
-21
lines changed Original file line number Diff line number Diff line change 3434 run : |
3535 set -ex
3636
37+ # Work around 'git status' always showing symlinks modified on Windows; see
38+ # https://github.com/git-for-windows/git/issues/2653#issuecomment-640234081
39+ git config --global core.fscache false
40+
3741 stack upgrade || curl -sSL https://get.haskellstack.org/ | sh -s - -f
3842
3943 if [[ "${{ matrix.os }}" == "ubuntu-latest" ]]
Original file line number Diff line number Diff line change 11# Changelog
22
33
4- ## Unreleased changes
5-
6- Release notes:
4+ ## v2.3.3
75
86** Changes since v2.3.1**
97
10- Major changes:
11-
12- Behavior changes:
13-
148Other enhancements:
159
1610* Add the ` stack-developer-mode ` flag
@@ -21,7 +15,6 @@ Bug fixes:
2115* Fix the problem of ` stack repl foo:test:bar ` failing without a project
2216 build before that. See
2317 [ #5213 ] ( https://github.com/commercialhaskell/stack/issues/5213 )
24-
2518* Fix ` stack sdist ` introducing unneded sublibrary syntax when using
2619 pvp-bounds. See
2720 [ #5289 ] ( https://github.com/commercialhaskell/stack/issues/5289 )
Original file line number Diff line number Diff line change 11name : stack
2- version : ' 2.3.2 '
2+ version : ' 2.3.3 '
33synopsis : The Haskell Tool Stack
44description : |
55 Please see the documentation at <https://docs.haskellstack.org>
@@ -92,7 +92,7 @@ dependencies:
9292- network-uri
9393- open-browser
9494- optparse-applicative
95- - pantry
95+ - pantry >= 0.4 && < 0.5
9696- casa-client
9797- casa-types
9898- path
Original file line number Diff line number Diff line change 1414 - unzip
1515flags :
1616 stack :
17- hide-dependency-versions : true
18- supported-build : true
1917 developer-mode : true
2018
2119ghc-options :
Original file line number Diff line number Diff line change 1414 - unzip
1515flags :
1616 stack :
17- hide-dependency-versions : true
18- supported-build : true
1917 developer-mode : true
2018
2119ghc-options :
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ cabal-version: 2.0
44--
55-- see: https://github.com/sol/hpack
66--
7- -- hash: 09229f434502c702e4058371b91cc64f9e800aab8abe66fb228d8da3137558b7
7+ -- hash: 4088422ebf565b9347481c01d786688d78b9aadc34246063f6c05ca732b41ff1
88
99name : stack
10- version : 2.3.2
10+ version : 2.3.3
1111synopsis : The Haskell Tool Stack
1212description : Please see the documentation at <https://docs.haskellstack.org>
1313 for usage information.
@@ -272,7 +272,7 @@ library
272272 , network-uri
273273 , open-browser
274274 , optparse-applicative
275- , pantry
275+ , pantry >= 0.4 && < 0.5
276276 , path
277277 , path-io
278278 , persistent
@@ -396,7 +396,7 @@ executable stack
396396 , network-uri
397397 , open-browser
398398 , optparse-applicative
399- , pantry
399+ , pantry >= 0.4 && < 0.5
400400 , path
401401 , path-io
402402 , persistent
@@ -519,7 +519,7 @@ executable stack-integration-test
519519 , open-browser
520520 , optparse-applicative
521521 , optparse-generic
522- , pantry
522+ , pantry >= 0.4 && < 0.5
523523 , path
524524 , path-io
525525 , persistent
@@ -647,7 +647,7 @@ test-suite stack-test
647647 , network-uri
648648 , open-browser
649649 , optparse-applicative
650- , pantry
650+ , pantry >= 0.4 && < 0.5
651651 , path
652652 , path-io
653653 , persistent
Original file line number Diff line number Diff line change 11import System.Process (rawSystem )
22import Control.Exception (throwIO )
3+ import StackTest
4+ import Control.Monad (unless )
35
46main :: IO ()
5- main = rawSystem " bash" [" run.sh" ] >>= throwIO
7+ main = unless isWindows $ rawSystem " bash" [" run.sh" ] >>= throwIO
You can’t perform that action at this time.
0 commit comments