Skip to content
Snippets Groups Projects
Commit 77c30fb3 authored by Lars Bilke's avatar Lars Bilke
Browse files

Merge branch 'fix-container' into 'master'

[ci] Fix container job

See merge request ogs/ogs!3726
parents 770209ab e4b30f79
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,7 @@ pre commit: ...@@ -2,6 +2,7 @@ pre commit:
stage: preparation stage: preparation
image: $PRECOMMIT_IMAGE image: $PRECOMMIT_IMAGE
needs: [ci_images] needs: [ci_images]
allow_failure: true
script: script:
- pre-commit install - pre-commit install
- pre-commit run --from-ref `git merge-base origin/master HEAD` --to-ref HEAD - pre-commit run --from-ref `git merge-base origin/master HEAD` --to-ref HEAD
......
...@@ -49,9 +49,9 @@ if(exprtk_ADDED) ...@@ -49,9 +49,9 @@ if(exprtk_ADDED)
target_include_directories(exprtk SYSTEM INTERFACE ${exprtk_SOURCE_DIR}) target_include_directories(exprtk SYSTEM INTERFACE ${exprtk_SOURCE_DIR})
endif() endif()
CPMAddPackage(NAME spdlog GITHUB_REPOSITORY gabime/spdlog VERSION 1.8.2) CPMFindPackage(NAME spdlog GITHUB_REPOSITORY gabime/spdlog VERSION 1.8.2)
CPMAddPackage( CPMFindPackage(
NAME tclap NAME tclap
GITHUB_REPOSITORY ufz/tclap GITHUB_REPOSITORY ufz/tclap
VERSION 1.2.4 VERSION 1.2.4
...@@ -217,7 +217,7 @@ else() ...@@ -217,7 +217,7 @@ else()
endif() endif()
# Does not compile in Debug-mode, see #3175. # Does not compile in Debug-mode, see #3175.
if(CMAKE_BUILD_TYPE STREQUAL "Release") if(CMAKE_BUILD_TYPE STREQUAL "Release" AND OGS_BUILD_TESTING)
set(XDMF_LIBNAME OgsXdmf CACHE STRING "") set(XDMF_LIBNAME OgsXdmf CACHE STRING "")
CPMAddPackage( CPMAddPackage(
NAME xdmf NAME xdmf
...@@ -272,7 +272,7 @@ if(OGS_BUILD_SWMM) ...@@ -272,7 +272,7 @@ if(OGS_BUILD_SWMM)
endif() endif()
endif() endif()
CPMAddPackage( CPMFindPackage(
NAME nlohmann_json NAME nlohmann_json
VERSION 3.6.1 VERSION 3.6.1
# the git repo is incredibly large, so we download the archived include # the git repo is incredibly large, so we download the archived include
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment