mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-04 03:40:14 +00:00
Merge branch 'bench_ci' into 'master'
Run benchmarks on gitlab CI See merge request OpenMW/openmw!789
This commit is contained in:
commit
2042a66cf3
@ -25,6 +25,7 @@ stages:
|
|||||||
- cmake --build . -- -j $(nproc)
|
- cmake --build . -- -j $(nproc)
|
||||||
- cmake --install .
|
- cmake --install .
|
||||||
- if [[ "${BUILD_TESTS_ONLY}" ]]; then ./openmw_test_suite; fi
|
- if [[ "${BUILD_TESTS_ONLY}" ]]; then ./openmw_test_suite; fi
|
||||||
|
- if [[ "${BUILD_TESTS_ONLY}" ]]; then ./openmw_detournavigator_navmeshtilescache_benchmark; fi
|
||||||
- ccache -s
|
- ccache -s
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
|
@ -4,9 +4,14 @@ set -xeo pipefail
|
|||||||
|
|
||||||
free -m
|
free -m
|
||||||
|
|
||||||
|
BUILD_UNITTESTS=OFF
|
||||||
|
BUILD_BENCHMARKS=OFF
|
||||||
|
|
||||||
if [[ "${BUILD_TESTS_ONLY}" ]]; then
|
if [[ "${BUILD_TESTS_ONLY}" ]]; then
|
||||||
export GOOGLETEST_DIR="${PWD}/googletest/build/install"
|
export GOOGLETEST_DIR="${PWD}/googletest/build/install"
|
||||||
env GENERATOR='Unix Makefiles' CONFIGURATION=Release CI/build_googletest.sh
|
env GENERATOR='Unix Makefiles' CONFIGURATION=Release CI/build_googletest.sh
|
||||||
|
BUILD_UNITTESTS=ON
|
||||||
|
BUILD_BENCHMARKS=ON
|
||||||
fi
|
fi
|
||||||
|
|
||||||
declare -a CMAKE_CONF_OPTS=(
|
declare -a CMAKE_CONF_OPTS=(
|
||||||
@ -43,7 +48,8 @@ if [[ "${BUILD_TESTS_ONLY}" ]]; then
|
|||||||
-DBUILD_ESSIMPORTER=OFF \
|
-DBUILD_ESSIMPORTER=OFF \
|
||||||
-DBUILD_OPENCS=OFF \
|
-DBUILD_OPENCS=OFF \
|
||||||
-DBUILD_WIZARD=OFF \
|
-DBUILD_WIZARD=OFF \
|
||||||
-DBUILD_UNITTESTS=ON \
|
-DBUILD_UNITTESTS=${BUILD_UNITTESTS} \
|
||||||
|
-DBUILD_BENCHMARKS=${BUILD_BENCHMARKS} \
|
||||||
-DGTEST_ROOT="${GOOGLETEST_DIR}" \
|
-DGTEST_ROOT="${GOOGLETEST_DIR}" \
|
||||||
-DGMOCK_ROOT="${GOOGLETEST_DIR}" \
|
-DGMOCK_ROOT="${GOOGLETEST_DIR}" \
|
||||||
..
|
..
|
||||||
|
Loading…
x
Reference in New Issue
Block a user