From 428a977dbc5e3fe3a87dd3434c62f03a5022d302 Mon Sep 17 00:00:00 2001 From: Mark Abraham Date: Sun, 16 Aug 2020 10:01:10 +0200 Subject: [PATCH] Avoid builds with RelWithDebInfo These produce object and binary files that are larger than we need. If we need that information to diagnose an issue, we can turn it on, or build locally using the same Docker image. Refs #3630 --- admin/gitlab-ci/gromacs.gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/gitlab-ci/gromacs.gitlab-ci.yml b/admin/gitlab-ci/gromacs.gitlab-ci.yml index 4c38a6f15d..7b5f85d7f9 100644 --- a/admin/gitlab-ci/gromacs.gitlab-ci.yml +++ b/admin/gitlab-ci/gromacs.gitlab-ci.yml @@ -312,7 +312,7 @@ gromacs:gcc-8-cuda-10.1:release:configure: COMPILER_MAJOR_VERSION: 8 RELEASE_BUILD_DIR: release-builds-gcc CMAKE_EXTRA_OPTIONS: "-DGMX_BUILD_MDRUN_ONLY=ON" - CMAKE_BUILD_TYPE_OPTIONS : "-DCMAKE_BUILD_TYPE=RelWithDebInfo" + CMAKE_BUILD_TYPE_OPTIONS : "-DCMAKE_BUILD_TYPE=RelWithAssert" CMAKE_REGRESSIONTEST_OPTIONS: "" dependencies: - archive:package @@ -361,7 +361,7 @@ gromacs:clang-8-cuda-10.1:release:configure: variables: COMPILER_MAJOR_VERSION: 8 RELEASE_BUILD_DIR: release-builds-clang - CMAKE_BUILD_TYPE_OPTIONS: "-DCMAKE_BUILD_TYPE=RelWithDebInfo" + CMAKE_BUILD_TYPE_OPTIONS: "-DCMAKE_BUILD_TYPE=RelWithAssert" # Jobs running during build stage -- 2.22.0