From f5b5ce851708a8aa7331556d2ee710014f22db0e Mon Sep 17 00:00:00 2001 From: Markus Holzer <markus.holzer@fau.de> Date: Fri, 20 Oct 2023 11:46:18 +0200 Subject: [PATCH] Install latest lbmpy version on mac --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dad8d9f99..00b4e8d85 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2072,6 +2072,9 @@ coverage: mac_Serial_Dbg: extends: .mac_build_template + before_script: + - pip3 install pystencils==1.3.2 + - pip3 install lbmpy==1.3.2 variables: CMAKE_BUILD_TYPE: "DebugOptimized" CTEST_EXCLUDE_LABELS: "longrun" @@ -2082,6 +2085,9 @@ mac_Serial_Dbg: mac_Serial: extends: .mac_build_template + before_script: + - pip3 install pystencils==1.3.2 + - pip3 install lbmpy==1.3.2 variables: CMAKE_BUILD_TYPE: "Release" CTEST_EXCLUDE_LABELS: "longrun" @@ -2092,6 +2098,9 @@ mac_Serial: mac_MpiOnly_Dbg: extends: .mac_build_template + before_script: + - pip3 install pystencils==1.3.2 + - pip3 install lbmpy==1.3.2 variables: CMAKE_BUILD_TYPE: "DebugOptimized" CTEST_EXCLUDE_LABELS: "longrun" @@ -2103,6 +2112,9 @@ mac_MpiOnly_Dbg: mac_MpiOnly: extends: .mac_build_template + before_script: + - pip3 install pystencils==1.3.2 + - pip3 install lbmpy==1.3.2 variables: CMAKE_BUILD_TYPE: "Release" CTEST_EXCLUDE_LABELS: "longrun" -- GitLab