Skip to content

Commit

Permalink
Merge branch release/2.34.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shahramn committed Feb 6, 2024
2 parents 236c5f0 + 957fcab commit 859894a
Show file tree
Hide file tree
Showing 2,095 changed files with 71,505 additions and 71,520 deletions.
132 changes: 0 additions & 132 deletions .cproject

This file was deleted.

2 changes: 1 addition & 1 deletion .github/.cmake-options
Original file line number Diff line number Diff line change
@@ -1 +1 @@
-DENABLE_EXTRA_TESTS=1 -DECCODES_INSTALL_EXTRA_TOOLS=1
-DENABLE_EXTRA_TESTS=1 -DECCODES_INSTALL_EXTRA_TOOLS=1 -DENABLE_PNG=1
6 changes: 4 additions & 2 deletions .github/ci-nightly-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ module load netcdf4/new
module load gnuparallel/new
module load python3

version=$(cat $TMPDIR/eccodes/VERSION)

cd ~masn/REGRESSION_TESTING/ecCodes
./par-suite.sh -w $TMPDIR/install/eccodes
./par-suite.sh -w $TMPDIR/install/eccodes/$version

# For debugging specific test(s)
# ./seq-suite.sh -w $TMPDIR/install/eccodes -d -t py_
# ./seq-suite.sh -w $TMPDIR/install/eccodes/$version -d -t py_
26 changes: 0 additions & 26 deletions .project

This file was deleted.

25 changes: 0 additions & 25 deletions .settings/language.settings.xml

This file was deleted.

1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Enrico Fucile
Shahram Najm
Eugen Betke
Sandor Kertesz
Sebastien Villaume
Florian Rathgeber
Expand Down
23 changes: 14 additions & 9 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,15 @@ endif()
# some variables/options of this project

if( CMAKE_CXX_COMPILER_ID STREQUAL "GNU" )
ecbuild_add_cxx_flags("-Wno-write-strings -Wno-deprecated")
ecbuild_add_cxx_flags("-Wno-write-strings")
ecbuild_add_cxx_flags("-Wno-deprecated")
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "Clang" OR CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang")
ecbuild_add_cxx_flags("-Wno-write-strings -Wno-deprecated")
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 16)
ecbuild_add_cxx_flags("-Wno-write-strings")
ecbuild_add_cxx_flags("-Wno-deprecated")
else()
ecbuild_add_cxx_flags("-Wno-writable-strings")
endif()
elseif( CMAKE_CXX_COMPILER_ID STREQUAL "Cray" )
set(CMAKE_CXX_FLAGS "-hstd=c++11 ${CMAKE_CXX_FLAGS}")
endif()
Expand Down Expand Up @@ -142,9 +148,8 @@ ecbuild_add_option( FEATURE AEC
DEFAULT ON
CONDITION AEC_FOUND )

ecbuild_find_python( VERSION 2.6 NO_LIBS )
find_package( NumPy )
set( HAVE_PYTHON 0 )
ecbuild_find_python( VERSION 3.6 NO_LIBS )
# find_package( NumPy )

## TODO REQUIRED_LANGUAGES Fortran
ecbuild_add_option( FEATURE FORTRAN
Expand All @@ -165,7 +170,7 @@ endif()
ecbuild_add_option( FEATURE MEMFS
DESCRIPTION "Memory based access to definitions/samples"
DEFAULT OFF
REQUIRED_PACKAGES PythonInterp )
REQUIRED_PACKAGES Python3 )

#if( HAVE_MEMFS AND "${CMAKE_C_COMPILER_ID}" STREQUAL "Cray")
# set( HAVE_MEMFS OFF )
Expand Down Expand Up @@ -478,10 +483,10 @@ endif()

###############################################################################
# Debugging aid. Print all known CMake variables
# get_cmake_property(_variableNames VARIABLES)
# foreach( _variableName ${_variableNames} )
#get_cmake_property(_variableNames VARIABLES)
#foreach( _variableName ${_variableNames} )
# ecbuild_info(" ${_variableName}=${${_variableName}}")
# endforeach()
#endforeach()
###############################################################################
# finalize

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.33.2
2.34.0
2 changes: 2 additions & 0 deletions data/grib_data_files.txt
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,5 @@ gfs.complex.mvmu.grib2
mercator.grib2
run_length_packing.grib2
boustrophedonic.grib1
reduced_gaussian_sub_area.legacy.grib1

Loading

0 comments on commit 859894a

Please sign in to comment.