From 9ec5801a5c6f3507fb4689bd35a2574ec28558d8 Mon Sep 17 00:00:00 2001 From: Daniel <d.hornung@indiscale.com> Date: Tue, 5 Oct 2021 13:36:05 +0200 Subject: [PATCH] MAINT: removed special handling for debug builds from .gitlab-ci.yml --- .gitlab-ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 334ff10..16e4ac0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -85,9 +85,6 @@ test: - mkdir build - cd build - conan install .. -s "compiler.libcxx=libstdc++11" - - FILE_TO_BE_PATCHED="$(grep "std::unique_ptr<ContextAllocator> context_allocator) {}" -l -r $(conan config home))" - - echo "FILE_TO_BE_PATCHED=$FILE_TO_BE_PATCHED" - - sed -e "s|std::unique_ptr<ContextAllocator> context_allocator) {}|std::unique_ptr<ContextAllocator> /*context_allocator*/) {}|" -i $FILE_TO_BE_PATCHED - cmake -DCMAKE_BUILD_TYPE=Debug .. - cmake --build . -j - cmake --build . -j --target unit_test_coverage -- GitLab