8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 04:43:03 +01:00
firebird-mirror/extern/re2/.github/cmake.sh
Adriano dos Santos Fernandes 2e35cc66e7 Update re2 to version 2021-04-01.
2021-05-26 10:07:49 -03:00

13 lines
315 B
Bash
Executable File

#!/bin/bash
set -eux
cmake -D CMAKE_BUILD_TYPE=Debug
cmake --build . --config Debug --clean-first
ctest -C Debug --output-on-failure -E 'dfa|exhaustive|random'
cmake -D CMAKE_BUILD_TYPE=Release
cmake --build . --config Release --clean-first
ctest -C Release --output-on-failure -E 'dfa|exhaustive|random'
exit 0