Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Auto PR - main β†’ MAPL-v3 - Update components.yaml to match GEOSgcm main as of 2024-Aug-12 #115

Merged
merged 3 commits into from
Aug 12, 2024
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
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ parameters:

# Anchors to prevent forgetting to update a version
os_version: &os_version ubuntu20
baselibs_version: &baselibs_version v7.24.0
bcs_version: &bcs_version v11.3.0
baselibs_version: &baselibs_version v7.25.0
bcs_version: &bcs_version v11.5.0
tag_build_arg_name: &tag_build_arg_name fv3version

orbs:
Expand Down Expand Up @@ -72,9 +72,9 @@ workflows:
baselibs_version: *baselibs_version
container_name: geosfvdycore
mpi_name: intelmpi
mpi_version: 2021.6.0
mpi_version: "2021.13"
compiler_name: intel
compiler_version: 2022.1.0
compiler_version: "2024.2"
image_name: geos-env
tag_build_arg_name: *tag_build_arg_name
resource_class: xlarge
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Deprecated

## [2.16.0] - 2024-08-12

### Changed

- Update to `components.yaml` to match or exceed GEOSgcm `main` as of 2024-08-12
- ESMA_cmake v3.45.1 β†’ v3.48.0
- GMAO_Shared v1.9.7 β†’ v1.9.8
- GEOS_Util v2.0.8 β†’ v2.1.2
- MAPL v2.46.0 β†’ v2.47.1
- FMS geos/2019.01.02+noaff.8 β†’ geos/2019.01.02+noaff.10
- fvdycore geos/v2.8.2 β†’ geos/v2.9.0

## [2.15.0] - 2024-05-03

### Changed
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cmake_policy (SET CMP0054 NEW)

project (
GEOSfvdycore
VERSION 2.15.0
VERSION 2.16.0
LANGUAGES Fortran CXX C) # Note - CXX is required for ESMF

if ("${PROJECT_SOURCE_DIR}" STREQUAL "${PROJECT_BINARY_DIR}")
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ In your `.bashrc` or `.tcshrc` or other rc file add a line:

###### bash


```bash
umask 0022
ulimit -s unlimited
Expand Down
12 changes: 6 additions & 6 deletions components.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
cmake:
local: ./@cmake
remote: ../ESMA_cmake.git
tag: v3.45.1
tag: v3.48.0
develop: develop

ecbuild:
Expand All @@ -22,26 +22,26 @@ ecbuild:
GMAO_Shared:
local: ./src/Shared/@GMAO_Shared
remote: ../GMAO_Shared.git
tag: v1.9.7
tag: v1.9.8
sparse: ./config/GMAO_Shared.sparse
develop: main

GEOS_Util:
local: ./src/Shared/@GMAO_Shared/@GEOS_Util
remote: ../GEOS_Util.git
tag: v2.0.8
tag: v2.1.2
develop: main

MAPL:
local: ./src/Shared/@MAPL
remote: ../MAPL.git
tag: v2.46.0
tag: v2.47.1
develop: develop

FMS:
local: ./src/Shared/@FMS
remote: ../FMS.git
tag: geos/2019.01.02+noaff.8
tag: geos/2019.01.02+noaff.10
develop: geos/release/2019.01

FVdycoreCubed_GridComp:
Expand All @@ -53,6 +53,6 @@ FVdycoreCubed_GridComp:
fvdycore:
local: ./src/Components/@FVdycoreCubed_GridComp/@fvdycore
remote: ../GFDL_atmos_cubed_sphere.git
tag: geos/v2.8.2
tag: geos/v2.9.0
develop: geos/develop

2 changes: 1 addition & 1 deletion parallel_build.csh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ end

if (-d ${ESMADIR}/@env || -d ${ESMADIR}/env@ || -d ${ESMADIR}/env) then
if ( "$DEVELOP" == "TRUE" ) then
echo "Checking out development branch of GMAO_Shared and GEOS_Util"
echo "Checking out development branches of GMAO_Shared and GEOS_Util"
mepo develop GMAO_Shared GEOS_Util
endif
else
Expand Down
21 changes: 14 additions & 7 deletions src/Shared/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,18 @@ esma_add_subdirectories (
GMAO_Shared
)

if (FV_PRECISION STREQUAL R4)
esma_add_subdirectory (FMS RENAME fms_r4)
elseif (FV_PRECISION STREQUAL R8)
esma_add_subdirectory (FMS RENAME fms_r8)
elseif (FV_PRECISION STREQUAL R4R8)
esma_add_subdirectory (FMS RENAME fms_r4)
esma_add_subdirectory (FMS RENAME fms_r8)
if (NOT FMS_FOUND)
message (STATUS "FMS library not found. Building FMS from source.")
if (FV_PRECISION STREQUAL R4)
esma_add_subdirectory (FMS RENAME fms_r4)
elseif (FV_PRECISION STREQUAL R8)
esma_add_subdirectory (FMS RENAME fms_r8)
# Special case - FMS is built twice with two
# different precisions.
elseif (FV_PRECISION STREQUAL R4R8)
esma_add_subdirectory (FMS RENAME fms_r4)
esma_add_subdirectory (FMS RENAME fms_r8)
endif ()
else ()
message (STATUS "FMS library found. Using FMS from ${FMS_DIR}")
endif ()
Loading