diff options
author | Moritz Angermann <moritz.angermann@gmail.com> | 2021-07-20 11:56:29 +0800 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2021-07-25 09:41:46 -0400 |
commit | 3801b35a4c479b07275a61df11d0107c242a4e43 (patch) | |
tree | 29fa89a3c88e03d7f9a9f6f6f5cc219d22a0709e /.gitlab | |
parent | a31aa2716b80e617c36db816460faa94ee952b64 (diff) | |
download | haskell-3801b35a4c479b07275a61df11d0107c242a4e43.tar.gz |
[CI] absolutely no caching on darwin
We failed at doing caching properly, so for now we won't do any
caching at all. This is not safe in a concurrent setting, however
all our darwin builders run with concurrency 1, and -j8, on 8 core
m1 mac minis.
Diffstat (limited to '.gitlab')
-rw-r--r-- | .gitlab/shell.nix | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/.gitlab/shell.nix b/.gitlab/shell.nix index dfaa9b5c5b..1ded62d982 100644 --- a/.gitlab/shell.nix +++ b/.gitlab/shell.nix @@ -45,15 +45,9 @@ # unconditionally add the MacOSX.sdk and TargetConditional.h export NIX_CFLAGS_COMPILE+=" -isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include" export NIX_LDFLAGS="-L/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib $NIX_LDFLAGS" - echo $NIX_LDFLAGS - echo $MACOSX_DEPLOYMENT_TARGET export MACOSX_DEPLOYMENT_TARGET=10.7 - echo $MACOSX_DEPLOYMENT_TARGET - # Use an architecture specific home, so cabal for different architectures don't confuse each other. - export HOME="$HOME/$(uname -m)-home" - mkdir -p $HOME ''; nativeBuildInputs = (with pkgs; [ |