Merge pull request #248551 from hercules-ci/lib-tests-release-darwin-transplant
lib/path/tests: Fix test setup on darwin
This commit is contained in:
commit
e60e943d15
1 changed files with 8 additions and 1 deletions
|
@ -18,7 +18,14 @@ pkgs.runCommand "lib-path-tests" {
|
|||
];
|
||||
} ''
|
||||
# Needed to make Nix evaluation work
|
||||
export NIX_STATE_DIR=$(mktemp -d)
|
||||
export TEST_ROOT=$(pwd)/test-tmp
|
||||
export NIX_BUILD_HOOK=
|
||||
export NIX_CONF_DIR=$TEST_ROOT/etc
|
||||
export NIX_LOCALSTATE_DIR=$TEST_ROOT/var
|
||||
export NIX_LOG_DIR=$TEST_ROOT/var/log/nix
|
||||
export NIX_STATE_DIR=$TEST_ROOT/var/nix
|
||||
export NIX_STORE_DIR=$TEST_ROOT/store
|
||||
export PAGER=cat
|
||||
|
||||
cp -r ${libpath} lib
|
||||
export TEST_LIB=$PWD/lib
|
||||
|
|
Loading…
Reference in a new issue