From f0d63c2e3cf6f85f3728bbdc2eff5552ec9335ee Mon Sep 17 00:00:00 2001 From: Pradipta Samanta <samanta@dkrz.de> Date: Mon, 24 Feb 2025 15:02:37 +0000 Subject: [PATCH] Fixed a bug in the Gitlab CI (icon-libraries/libiconmath!30) ## What is the bug The CMake option `IM_ENABLE_OPENACC` was by mistake written as `MS_ENABLE_OPENACC` in `gitlab-ci.yml` ## How do you fix it Using the correct option now Approved-by: Yen-Chen Chen <yen-chen.chen@tum.de> Merged-by: Yen-Chen Chen <yen-chen.chen@tum.de> Changelog: bugfix --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7e420f6..c957dba 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -74,7 +74,7 @@ nvhpc_gpu: - module load git gcc/11.2.0-gcc-11.2.0 nvhpc/22.5-gcc-11.2.0 - mkdir nvhpc_gpu - cd nvhpc_gpu - - /sw/spack-levante/cmake-3.23.1-q5kzz6/bin/cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_C_COMPILER=nvc -DCMAKE_Fortran_COMPILER=nvfortran -DMS_ENABLE_OPENACC=ON + - /sw/spack-levante/cmake-3.23.1-q5kzz6/bin/cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_C_COMPILER=nvc -DCMAKE_Fortran_COMPILER=nvfortran -DIM_ENABLE_OPENACC=ON - make VERBOSE=1 - make test tags: -- GitLab