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

v12: Remove regrid.pl, consolidate CMake #113

Open
wants to merge 2 commits into
base: feature/sdrabenh/gcm_v12
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2.1

# Anchors in case we need to override the defaults from the orb
#baselibs_version: &baselibs_version v8.5.0
#baselibs_version: &baselibs_version v8.9.0
#bcs_version: &bcs_version v12.0.0

orbs:
Expand Down
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added choice 'blank' for qos in remap_restart python pacakage
- Added hydrostatic question in remap_restart python pacakage
- Added function to remap from stretched restarts to stretched restarts
- Added remapping for GEOS-IT restarts
- Added new res C1120
- Added remapping for GEOS-IT restarts
- Added new res C1120
- NOTE: If running on SLES15 remap tests will not be zero diff for GOCART RST but are zero diff for all other

### Changed
Expand All @@ -24,6 +24,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Removed

- Remove `regrid.pl`

### Deprecated

## [2.1.5] - 2024-12-05
Expand Down
19 changes: 1 addition & 18 deletions pre/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,23 +1,6 @@
set (alldirs
NSIDC-OSTIA_SST-ICE_blend
prepare_ocnExtData
remap_restart
)
esma_add_subdirectories (${alldirs})

file(GLOB pythonscripts CONFIGURE_DEPENDS ./remap_restart/remap* ./remap_restart/bin2nc_merra2* ./remap_restart/tests/*.*)

list(FILTER pythonscripts EXCLUDE REGEX "remap_utils.py")

foreach (file ${pythonscripts})
install(PROGRAMS ${file} DESTINATION bin)
endforeach()

set(file ./remap_restart/remap_utils.py)
configure_file(${file} ${file} @ONLY)
install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/${file} DESTINATION bin)

if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/regrid.pl)
install(
PROGRAMS regrid.pl
DESTINATION bin)
endif()
Loading
Loading