[Git][ghc/ghc][master] gitlab-ci: Eliminate redundant ghc --info output
Marge Bot (@marge-bot)
gitlab at gitlab.haskell.org
Fri Feb 3 10:26:17 UTC 2023
Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC
Commits:
8feb9301 by Ben Gamari at 2023-02-03T05:25:59-05:00
gitlab-ci: Eliminate redundant ghc --info output
Previously ci.sh would emit the output of `ghc --info` every time it ran
when using the nix toolchain. This produced a significant amount of
noise.
See #22861.
- - - - -
1 changed file:
- .gitlab/ci.sh
Changes:
=====================================
.gitlab/ci.sh
=====================================
@@ -214,8 +214,6 @@ function set_toolchain_paths() {
cat toolchain.sh
fi
source toolchain.sh
- info "--info for GHC for $NIX_SYSTEM"
- $GHC --info
;;
env)
# These are generally set by the Docker image but
@@ -274,6 +272,11 @@ function setup() {
show_tool CABAL
show_tool HAPPY
show_tool ALEX
+
+ info "====================================================="
+ info "ghc --info"
+ info "====================================================="
+ $GHC --info
}
function fetch_ghc() {
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/8feb93013cf6f093e025c9e9a3213ae1fa0f73a0
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/8feb93013cf6f093e025c9e9a3213ae1fa0f73a0
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20230203/88b3aec3/attachment-0001.html>
More information about the ghc-commits
mailing list