diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-10-13 11:38:52 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-10-14 08:39:48 -0400 |
commit | 0ca044fd01df706bff69032cca525e78e2e3f100 (patch) | |
tree | d942d69eaeb38fc782f68cbbc76c2f30604084ba /hadrian | |
parent | 4aba72d62da2fbb499a5eaace361c49c04533600 (diff) | |
download | haskell-0ca044fd01df706bff69032cca525e78e2e3f100.tar.gz |
gitlab-ci: Move hadrian-ghc-in-ghci job first
This is a very cheap job and can catch a number of "easy" failure modes
(e.g. missing imports in the compiler). Let's run it first.
Diffstat (limited to 'hadrian')
-rwxr-xr-x | hadrian/ghci.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hadrian/ghci.sh b/hadrian/ghci.sh index e296efa792..f31b94574f 100755 --- a/hadrian/ghci.sh +++ b/hadrian/ghci.sh @@ -2,5 +2,5 @@ set -e -GHC_FLAGS=$(TERM=dumb CABFLAGS=-v0 "hadrian/build.cabal.sh" tool-args -q --build-root=.hadrian_ghci --flavour=ghc-in-ghci "$@") +GHC_FLAGS="$GHC_FLAGS $(TERM=dumb CABFLAGS=-v0 "hadrian/build.cabal.sh" tool-args -q --build-root=.hadrian_ghci --flavour=ghc-in-ghci "$@")" ghci $GHC_FLAGS "$@" -fno-code -fwrite-interface -hidir=.hadrian_ghci/interface -O0 ghc/Main.hs +RTS -A128m |