diff options
author | Ben Gamari <ben@smart-cactus.org> | 2022-08-07 23:20:49 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-08-09 02:31:14 -0400 |
commit | c1c08bd829fb33a185f0a71f08babe5d7e6556fc (patch) | |
tree | 30224a6cf8c93f24683629f76d3d28b7ddd6ace5 /.gitlab | |
parent | e5ceff56a6f11e4adc17a7cc05645b3e3a66ab97 (diff) | |
download | haskell-c1c08bd829fb33a185f0a71f08babe5d7e6556fc.tar.gz |
gitlab-ci: Don't use coreutils on Darwin
In general we want to ensure that the tested environment is as similar
as possible to the environment the user will use. In the case of Darwin,
this means we want to use the system's BSD command-line utilities, not
coreutils.
This would have caught #21974.
Diffstat (limited to '.gitlab')
-rw-r--r-- | .gitlab/darwin/toolchain.nix | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/.gitlab/darwin/toolchain.nix b/.gitlab/darwin/toolchain.nix index cc485946cf..a48870de9a 100644 --- a/.gitlab/darwin/toolchain.nix +++ b/.gitlab/darwin/toolchain.nix @@ -85,7 +85,6 @@ pkgs.writeTextFile { export PATH PATH="${pkgs.autoconf}/bin:$PATH" PATH="${pkgs.automake}/bin:$PATH" - PATH="${pkgs.coreutils}/bin:$PATH" export FONTCONFIG_FILE=${fonts} export XELATEX="${ourtexlive}/bin/xelatex" export MAKEINDEX="${ourtexlive}/bin/makeindex" |