forked from NOAA-EMC/GSI
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated noaa-cloud spack-stack location NOAA-EMC#589.
- Loading branch information
1 parent
e32b961
commit bd942fa
Showing
1 changed file
with
12 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
help([[ | ||
]]) | ||
|
||
prepend_path("MODULEPATH", "/contrib/EPIC/miniconda3/modulefiles") | ||
miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" | ||
load(pathJoin("miniconda3", miniconda3_ver)) | ||
prepend_path("MODULEPATH", "/contrib/EPIC/spack-stack/spack-stack-1.4.1/envs/unified-env/install/modulefiles/Core") | ||
prepend_path("MODULEPATH", "/contrib/spack-stack/modulefiles/core") | ||
|
||
prepend_path("MODULEPATH", "/contrib/EPIC/spack-stack/spack-stack-1.4.1/envs/unified-dev/install/modulefiles/Core") | ||
load("stack-intel") | ||
load("stack-intel-oneapi-mpi") | ||
load("ufs-srw-app-env") | ||
load("gsi-ncdiag/1.1.1") | ||
local stack_intel_ver=os.getenv("stack_intel_ver") or "2021.3.0" | ||
local stack_impi_ver=os.getenv("stack_impi_ver") or "2021.3.0" | ||
local cmake_ver=os.getenv("cmake_ver") or "3.23.1" | ||
local stack_python_ver=os.getenv("stack_python_ver") or "3.9.12" | ||
|
||
load("gsi_common_spack") | ||
load(pathJoin("stack-intel", stack_intel_ver)) | ||
load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) | ||
load(pathJoin("cmake", cmake_ver)) | ||
load(pathJoin("stack-python", stack_python_ver)) | ||
|
||
load("gsi_common") | ||
|
||
pushenv("GSI_BINARY_SOURCE_DIR", "/contrib/EPIC/GSI_data/fix/20230601") | ||
whatis("Description: GSI environment on Cloud with Intel Compilers") |