Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ script.
- [NCEPLIBS-wgrib2](https://github.com/noaa-emc/nceplibs-wgrib2.git)
- [NCEPLIBS-prod_util](https://github.com/noaa-emc/nceplibs-prod_util.git)
- [NCEPLIBS-grib_util](https://github.com/noaa-emc/nceplibs-grib_util.git)
- [NCEPLIBS-ncio](https://github.com/noaa-emc/nceplibs-ncio.git)
- [EMC_crtm](https://github.com/noaa-emc/EMC_crtm.git)
- [EMC_post](https://github.com/noaa-emc/EMC_post.git)

Expand Down
5 changes: 5 additions & 0 deletions config/stack_custom.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,11 @@ grib_util:
install_as: 1.2.2
openmp: ON

ncio:
build: YES
version: develop
install_as: 1.0.0

boost:
build: YES
version: 1.68.0
Expand Down
5 changes: 5 additions & 0 deletions config/stack_gaea.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,11 @@ grib_util:
install_as: 1.2.2
openmp: ON

ncio:
build: YES
version: develop
install_as: 1.0.0

boost:
build: NO
version: 1.68.0
Expand Down
5 changes: 5 additions & 0 deletions config/stack_mac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,11 @@ grib_util:
install_as: 1.2.2
openmp: ON

ncio:
build: YES
version: develop
install_as: 1.0.0

boost:
build: YES
version: 1.68.0
Expand Down
5 changes: 5 additions & 0 deletions config/stack_ncar.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,11 @@ grib_util:
install_as: 1.2.2
openmp: ON

ncio:
build: YES
version: develop
install_as: 1.0.0

boost:
build: YES
version: 1.68.0
Expand Down
5 changes: 5 additions & 0 deletions config/stack_noaa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,11 @@ grib_util:
install_as: 1.2.2
openmp: ON

ncio:
build: YES
version: develop
install_as: 1.0.0

boost:
build: YES
version: 1.68.0
Expand Down
5 changes: 5 additions & 0 deletions config/stack_ufs_weather_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -210,3 +210,8 @@ grib_util:
version: v1.2.2
install_as: 1.2.2
openmp: ON

ncio:
build: YES
version: develop
install_as: 1.0.0
6 changes: 6 additions & 0 deletions libs/build_nceplibs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,12 @@ if $MODULES; then
prod_util)
module load w3nco
;;
ncio)
mpi=$mpi_check
[[ -z $mpi ]] && ( echo "$name requires MPI, ABORT!"; exit 1 )
module load hpc-$HPC_MPI
module load netcdf
;;
esac
module list
set -x
Expand Down