Skip to content

Commit 6a6ee61

Browse files
authored
Merge pull request #858 from GEOS-ESM/develop
merge develop into feature/agstub/issm-components
2 parents 78f1368 + 5837373 commit 6a6ee61

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2.1
22

33
# Anchors in case we need to override the defaults from the orb
4-
#baselibs_version: &baselibs_version v8.18.0
4+
#baselibs_version: &baselibs_version v8.27.0
55
#bcs_version: &bcs_version v11.6.0
66

77
orbs:

.github/workflows/push-to-develop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout repo
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515
with:
1616
fetch-depth: 0
1717
- name: Run the action
18-
uses: devops-infra/action-pull-request@v0.5.5
18+
uses: devops-infra/action-pull-request@v1.0.2
1919
with:
2020
github_token: ${{ secrets.GITHUB_TOKEN }}
2121
source_branch: develop

.github/workflows/release-tarball.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v5
13+
uses: actions/checkout@v6
1414
with:
1515
path: ${{ github.event.repository.name }}-${{ github.event.release.tag_name }}
1616

.github/workflows/workflow.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: gfortran / ${{ matrix.cmake-build-type }} / ${{ matrix.cmake-generator }}
2121
runs-on: ubuntu-latest
2222
container:
23-
image: gmao/ubuntu24-geos-env-mkl:v8.18.0-openmpi_5.0.5-gcc_14.2.0
23+
image: gmao/ubuntu24-geos-env-mkl:v8.27.0-openmpi_5.0.5-gcc_14.2.0
2424
strategy:
2525
fail-fast: false
2626
matrix:
@@ -32,7 +32,7 @@ jobs:
3232
OMPI_MCA_btl_vader_single_copy_mechanism: none
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636
with:
3737
fetch-depth: 1
3838
filter: blob:none
@@ -49,15 +49,15 @@ jobs:
4949
name: ifort / ${{ matrix.cmake-build-type }} / ${{ matrix.cmake-generator }}
5050
runs-on: ubuntu-latest
5151
container:
52-
image: gmao/ubuntu24-geos-env:v8.18.0-intelmpi_2021.13-ifort_2021.13
52+
image: gmao/ubuntu24-geos-env:v8.27.0-intelmpi_2021.13-ifort_2021.13
5353
strategy:
5454
fail-fast: false
5555
matrix:
5656
cmake-build-type: [Debug, Release]
5757
cmake-generator: [Unix Makefiles]
5858
steps:
5959
- name: Checkout
60-
uses: actions/checkout@v5
60+
uses: actions/checkout@v6
6161
with:
6262
fetch-depth: 1
6363
filter: blob:none
@@ -77,15 +77,15 @@ jobs:
7777
# name: ifx / ${{ matrix.cmake-build-type }} / ${{ matrix.cmake-generator }} #
7878
# runs-on: ubuntu-latest #
7979
# container: #
80-
# image: gmao/ubuntu24-geos-env:v8.18.0-intelmpi_2021.15-ifx_2025.1 #
80+
# image: gmao/ubuntu24-geos-env:v8.27.0-intelmpi_2021.15-ifx_2025.1 #
8181
# strategy: #
8282
# fail-fast: false #
8383
# matrix: #
8484
# cmake-build-type: [Debug, Release] #
8585
# cmake-generator: [Unix Makefiles] #
8686
# steps: #
8787
# - name: Checkout #
88-
# uses: actions/checkout@v5 #
88+
# uses: actions/checkout@v6 #
8989
# with: #
9090
# fetch-depth: 1 #
9191
# filter: blob:none #

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ if (NOT Baselibs_FOUND)
7575
# Another issue with historical reasons, old/wrong zlib target used in GEOS
7676
add_library(ZLIB::zlib ALIAS ZLIB::ZLIB)
7777

78-
find_package(MAPL 2.63 QUIET)
78+
find_package(MAPL 2.68 QUIET)
7979
if (MAPL_FOUND)
8080
message(STATUS "Found MAPL: ${MAPL_BASE_DIR} (found version \"${MAPL_VERSION})\"")
8181
endif ()

0 commit comments

Comments
 (0)