forked from organicmaps/organicmaps
Build Linux releases for GitHub checks (#1605)
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
77a0ad823b
commit
5da96de40a
1 changed files with 6 additions and 3 deletions
9
.github/workflows/linux-check.yaml
vendored
9
.github/workflows/linux-check.yaml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue