From 7893cf983d4beb38419249d0a5e0deafb1c5f23e Mon Sep 17 00:00:00 2001 From: Harshula Jayasuriya Date: Tue, 24 Sep 2024 12:18:54 +1000 Subject: [PATCH] getting_started/spack.md: use ACCESS-TEST instead of ACCESS-OM2 (#808) --- docs/getting_started/spack.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/getting_started/spack.md b/docs/getting_started/spack.md index 13958d5d1..c4d01194e 100644 --- a/docs/getting_started/spack.md +++ b/docs/getting_started/spack.md @@ -43,21 +43,21 @@ ln -s -r -v spack-config/v0.22/gadi/* spack/etc/spack/ ## Test Spack (OPTIONAL) -To test _Spack_ we will create an [ACCESS-OM2](/models/configurations/access-om#access-om2) environment and build the relevant packages. Then, we will uninstall all the packages and remove the environment. +To test _Spack_ we will create an `ACCESS-TEST` environment and build the relevant packages. Then, we will uninstall all the packages and remove the environment. ``` module purge cd . spack-config/spack-enable.bash -git clone https://github.com/ACCESS-NRI/ACCESS-OM2.git -spack env create access-om2 ACCESS-OM2/spack.yaml -spack env activate -p access-om2 +git clone https://github.com/ACCESS-NRI/ACCESS-TEST.git +spack env create test ACCESS-TEST/spack.yaml +spack env activate -p test spack find spack concretize -f spack install --verbose spack find spack uninstall --remove --all spack env deactivate -spack env rm access-om2 -rm -rf ACCESS-OM2 +spack env rm test +rm -rf ACCESS-TEST ```