This commit is contained in:
parent
4d0a7f9b45
commit
3564400000
1 changed files with 21 additions and 7 deletions
|
@ -4,12 +4,26 @@ set -e
|
||||||
cd $(git rev-parse --show-toplevel)/
|
cd $(git rev-parse --show-toplevel)/
|
||||||
rm -rf ./build
|
rm -rf ./build
|
||||||
|
|
||||||
conan build . \
|
Xvfb :99 -screen 0 1024x768x16 &
|
||||||
|
export DISPLAY=:99
|
||||||
|
export CXX=$(which g++)
|
||||||
|
export CC=$(which gcc)
|
||||||
|
|
||||||
|
conan conan build . \
|
||||||
-c tools.system.package_manager:mode=install \
|
-c tools.system.package_manager:mode=install \
|
||||||
-c tools.cmake.cmaketoolchain:generator=Ninja \
|
-c tools.cmake.cmaketoolchain:generator=Ninja \
|
||||||
|
-c tools.build:compiler_executables='{"c": "gcc", "cpp": "g++"}' \
|
||||||
-s build_type=Release \
|
-s build_type=Release \
|
||||||
-o enable_unit_tests=True \
|
-s compiler=gcc \
|
||||||
|
-s compiler.version=15 \
|
||||||
|
-s compiler.libcxx=libstdc++ \
|
||||||
-o use_mold=True \
|
-o use_mold=True \
|
||||||
|
-o enable_unit_tests=True \
|
||||||
|
-o enable_fuzz_tests=False \
|
||||||
|
-o enable_llvm_coverage=False \
|
||||||
|
-o enable_static_analysis=False \
|
||||||
|
-o use_mold=True \
|
||||||
|
-o export_compile_commands=False \
|
||||||
--build=missing
|
--build=missing
|
||||||
|
|
||||||
for test in $(find ./build -type f -name '*_tests' -executable); do
|
for test in $(find ./build -type f -name '*_tests' -executable); do
|
||||||
|
|
Loading…
Add table
Reference in a new issue