Skip to content

Commit

Permalink
Set CLICOLOR_FORCE=0 (#6608)
Browse files Browse the repository at this point in the history
* Set CLICOLOR_FORCE=0

Since #6340 we're considering `CLICOLOR_FORCE` to determine whether
stderr supports color. However this changes behavior observable from the
test suite, so `CLICOLOR_FORCE=1 make test` fails (this is tracked as
#6607).

The issue is that ocaml/setup-ocaml#631, this variable is set in the CI
environment. So we disable it until the situation is fixed (and this
variable does not have observable changes anymore).

Signed-off-by: Etienne Millon <[email protected]>
  • Loading branch information
emillon authored Nov 30, 2022
1 parent ad833ef commit a093bd0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dune-file
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,7 @@

(env
(_
(flags :standard -alert -unstable)))
(flags :standard -alert -unstable)
(env-vars
; Workaround for #6607
(CLICOLOR_FORCE 0))))

0 comments on commit a093bd0

Please sign in to comment.