Build Linux releases for GitHub checks (#1605)

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2021-11-23 07:37:04 +01:00 committed by GitHub
parent 77a0ad823b
commit 5da96de40a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,13 +18,14 @@ on:
jobs:
linux-debug:
name: Linux Debug Build and Test
name: Linux Debug and Release Build and Test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
compiler: [{ CXX: g++-10, CC: gcc-10 }, { CXX: clang++, CC: clang }]
compiler: [{ CXX: g++-10, CC: gcc-10 }, { CXX: clang++-12, CC: clang-12 }]
params: [{ CMAKE_BUILD_TYPE: Debug }, { CMAKE_BUILD_TYPE: Release }]
steps:
- name: Checkout sources
@ -54,7 +55,9 @@ jobs:
CC: ${{ matrix.compiler.CC }}
CXX: ${{ matrix.compiler.CXX }}
# -g1 should slightly reduce build time.
run: cmake . -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS_DEBUG=-g1
run: |
echo "Building ${{ matrix.params.CMAKE_BUILD_TYPE }}"
cmake . -B build -G Ninja -DCMAKE_BUILD_TYPE=${{ matrix.params.CMAKE_BUILD_TYPE }} -DCMAKE_CXX_FLAGS_DEBUG=-g1
- name: Compile
shell: bash