From 3adfe13b7ee47e6d21229852a7b1a10b09c92061 Mon Sep 17 00:00:00 2001 From: David Capello Date: Thu, 23 Jun 2022 16:24:17 -0300 Subject: [PATCH] Add RelWithDebInfo and Debug build types to GitHub actions --- .github/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 721c08c64..2b157e346 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,11 +7,11 @@ jobs: fail-fast: false matrix: os: [windows-latest, macos-latest, ubuntu-latest] - build_type: [debug] + build_type: [RelWithDebInfo, Debug] enable_ui: [off] include: - os: ubuntu-latest - build_type: debug + build_type: Debug enable_ui: on steps: - uses: actions/checkout@v2 @@ -42,6 +42,7 @@ jobs: export enable_ccache=on fi cmake -S . -B build -G Ninja \ + -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \ -DCMAKE_OSX_DEPLOYMENT_TARGET=10.9 \ -DENABLE_TESTS=ON \ -DENABLE_UI=${{ matrix.enable_ui }} \