Skip to content
Snippets Groups Projects
Commit 091e3853 authored by Ashwin Kumar Karnad's avatar Ashwin Kumar Karnad
Browse files

Set SPACK_ROOT instead of SPACK_DIR

parent 95820236
No related branches found
No related tags found
1 merge request!82Remove cmd
Pipeline #385451 passed
...@@ -1202,7 +1202,7 @@ def remove_spack_environment(spack_dir, environment_name, build_log_path=None): ...@@ -1202,7 +1202,7 @@ def remove_spack_environment(spack_dir, environment_name, build_log_path=None):
logging.warning(f"Removing spack environment {environment_name}") logging.warning(f"Removing spack environment {environment_name}")
spack_env = spack_dir / "share" / "spack" / "setup-env.sh" spack_env = spack_dir / "share" / "spack" / "setup-env.sh"
commands_to_execute = [ commands_to_execute = [
f"export SPACK_DIR={spack_dir}", # need to set SPACK_DIR in dash and sh f"export SPACK_ROOT={spack_dir}", # need to set SPACK_ROOT in dash and sh
f". {spack_env}", f". {spack_env}",
f"spack env activate {environment_name}", f"spack env activate {environment_name}",
f"for spec in $(spack -e {environment_name} find" # this line continues f"for spec in $(spack -e {environment_name} find" # this line continues
...@@ -1237,7 +1237,7 @@ def remove_spack_package(spack_dir, package, build_log_path=None): ...@@ -1237,7 +1237,7 @@ def remove_spack_package(spack_dir, package, build_log_path=None):
logging.info(f"Removing spack package {package}") logging.info(f"Removing spack package {package}")
spack_env = spack_dir / "share" / "spack" / "setup-env.sh" spack_env = spack_dir / "share" / "spack" / "setup-env.sh"
commands_to_execute = [ commands_to_execute = [
f"export SPACK_DIR={spack_dir}", # need to set SPACK_DIR in dash and sh f"export SPACK_ROOT={spack_dir}", # need to set SPACK_ROOT in dash and sh
f". {spack_env}", f". {spack_env}",
f"spack uninstall -y {package}", f"spack uninstall -y {package}",
] ]
......
...@@ -778,7 +778,7 @@ def test_remove_package_sets(tmp_path, simple_toolchain): ...@@ -778,7 +778,7 @@ def test_remove_package_sets(tmp_path, simple_toolchain):
# check that zlib@1.2 is still installed # check that zlib@1.2 is still installed
# spack location -i <package> exit 0 if installed and 1 if not installed # spack location -i <package> exit 0 if installed and 1 if not installed
source_spack = ( source_spack = (
f"export SPACK_DIR={release_dir} &&" f"export SPACK_ROOT={release_dir} &&"
f'. {release_dir / "spack" / "share" / "spack" / "setup-env.sh"}' f'. {release_dir / "spack" / "share" / "spack" / "setup-env.sh"}'
) )
mod.run(f"{source_spack} && spack location -i zlib", shell=True, check=True) mod.run(f"{source_spack} && spack location -i zlib", shell=True, check=True)
...@@ -815,7 +815,7 @@ def test_remove_global_package_sets(): ...@@ -815,7 +815,7 @@ def test_remove_global_package_sets():
root_dir / release_to_test / mod.get_native_microarchitecture() / "spack" root_dir / release_to_test / mod.get_native_microarchitecture() / "spack"
) )
source_spack = ( source_spack = (
f"export SPACK_DIR={spack_dir} &&" f"export SPACK_ROOT={spack_dir} &&"
f'. {spack_dir / "share" / "spack" / "setup-env.sh"}' f'. {spack_dir / "share" / "spack" / "setup-env.sh"}'
) )
# check that zlib is installed # check that zlib is installed
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment