Skip to content

Commit

Permalink
revert gsi_wcoss2.lua to develop (NOAA-EMC#447)
Browse files Browse the repository at this point in the history
  • Loading branch information
RussTreadon-NOAA committed Sep 11, 2023
1 parent f4524b9 commit 1485b20
Showing 1 changed file with 18 additions and 14 deletions.
32 changes: 18 additions & 14 deletions modulefiles/gsi_wcoss2.lua
Original file line number Diff line number Diff line change
@@ -1,21 +1,25 @@
help([[
]])

local PrgEnv_intel_ver=os.getenv("PrgEnv_intel_ver") or "8.1.0"
local intel_ver=os.getenv("intel_ver") or "19.1.3.304"
local craype_ver=os.getenv("craype_ver") or "2.7.8"
local cray_mpich_ver=os.getenv("cray_mpich_ver") or "8.1.7"
local cmake_ver= os.getenv("cmake_ver") or "3.20.2"
local python_ver=os.getenv("python_ver") or "3.8.6"
local prod_util_ver=os.getenv("prod_util_ver") or "2.0.10"

load("PrgEnv-intel")
load("intel")
load("craype")
load("cray-mpich")
load("cmake")
load(pathJoin("PrgEnv-intel", PrgEnv_intel_ver))
load(pathJoin("intel", intel_ver))
load(pathJoin("craype", craype_ver))
load(pathJoin("cray-mpich", cray_mpich_ver))
load(pathJoin("cmake", cmake_ver))
load(pathJoin("python", python_ver))

prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/Mark.Potts/spack-stack/spack-stack-1.4.1/envs/unified-dev-19/install/modulefiles/Core")
load("stack-intel")
load("stack-cray-mpich")
load("prod-util")
load("gsi_common_wcoss2")
load(pathJoin("prod_util", prod_util_ver))

load("gsi_common")

setenv("CC", "cc")
setenv("CXX", "CC")
setenv("FC", "ftn")
pushenv("GSI_BINARY_SOURCE_DIR", "/lfs/h2/emc/global/noscrub/emc.global/FIX/fix/gsi/20230601")
whatis("Description: GSI environment on Hera with Intel Compilers")

whatis("Description: GSI environment on WCOSS2")

0 comments on commit 1485b20

Please sign in to comment.