Skip to content

Commit

Permalink
The usual dance
Browse files Browse the repository at this point in the history
  • Loading branch information
markuspf committed Mar 23, 2022
1 parent 1e1265c commit 0a894b3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/cmake.yml
Expand Up @@ -27,6 +27,10 @@ jobs:
- {os: ubuntu-latest, compiler: gcc, version: '10',
build_type: Debug, hash_type: xxhash,
flags: '-O0 -fno-inline --coverage', coverage: true}
- {os: ubuntu-latest, compiler: gcc, version: '10',
build_type: Debug, hash_type: xxhash,
flags: '-fsanitize=address -fno-omit-frame-pointer',
ld_flags: '-fsanitize=address -fno-omit-frame-pointer'}

# Clang builds
- {os: ubuntu-latest, compiler: clang, version: '10',
Expand Down Expand Up @@ -72,7 +76,7 @@ jobs:
- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: cmake -B${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DHashType=${{ matrix.hash_type }} -DBuildTests=ON -DBuildLargeTests=OFF -DBuildVelocyPackExamples=ON -DBuildTools=ON -DEnableSSE=OFF -DCMAKE_CXX_STANDARD=${{env.CXX_STANDARD}}
run: cmake -B${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DHashType=${{ matrix.hash_type }} -DBuildTests=ON -DBuildLargeTests=OFF -DBuildVelocyPackExamples=ON -DBuildTools=ON -DEnableSSE=OFF -DCMAKE_CXX_STANDARD=${{env.CXX_STANDARD}} -DCMAKE_CXX_FLAGS="${{ matrix.flags }}" -DCMAKE_LINKER_FLAGS="${{ matrix.ld_flags }}"

- name: Build
# Build your program with the given configuration
Expand Down

0 comments on commit 0a894b3

Please sign in to comment.