Merge pull request #943 from simdjson/dlemire/fewer_perf_tests
Fewer performance tests.
This commit is contained in:
commit
2cc84b6e51
|
@ -118,7 +118,7 @@ jobs:
|
||||||
description: Build and run tests on GCC 7 and AVX 2 with a cmake static build
|
description: Build and run tests on GCC 7 and AVX 2 with a cmake static build
|
||||||
executor: gcc7
|
executor: gcc7
|
||||||
environment: { CMAKE_FLAGS: -DSIMDJSON_GOOGLE_BENCHMARKS=ON }
|
environment: { CMAKE_FLAGS: -DSIMDJSON_GOOGLE_BENCHMARKS=ON }
|
||||||
steps: [ install_cmake, cmake_test_all, cmake_install_test ]
|
steps: [ install_cmake, cmake_test, cmake_install_test ]
|
||||||
gcc10:
|
gcc10:
|
||||||
description: Build and run tests on GCC 10 and AVX 2 with a cmake static build
|
description: Build and run tests on GCC 10 and AVX 2 with a cmake static build
|
||||||
executor: gcc10
|
executor: gcc10
|
||||||
|
@ -139,7 +139,7 @@ jobs:
|
||||||
description: Build and run tests on clang 10 and AVX 2 with a cmake static build and libc++
|
description: Build and run tests on clang 10 and AVX 2 with a cmake static build and libc++
|
||||||
executor: clang10
|
executor: clang10
|
||||||
environment: { CMAKE_FLAGS: -DSIMDJSON_USE_LIBCPP=ON }
|
environment: { CMAKE_FLAGS: -DSIMDJSON_USE_LIBCPP=ON }
|
||||||
steps: [ cmake_test_all, cmake_install_test ]
|
steps: [ cmake_test, cmake_install_test ]
|
||||||
# sanitize
|
# sanitize
|
||||||
sanitize-gcc10:
|
sanitize-gcc10:
|
||||||
description: Build and run tests on GCC 10 and AVX 2 with a cmake sanitize build
|
description: Build and run tests on GCC 10 and AVX 2 with a cmake sanitize build
|
||||||
|
|
|
@ -168,7 +168,7 @@ steps:
|
||||||
CXX: clang++-6.0
|
CXX: clang++-6.0
|
||||||
CMAKE_FLAGS: -DSIMDJSON_BUILD_STATIC=OFF
|
CMAKE_FLAGS: -DSIMDJSON_BUILD_STATIC=OFF
|
||||||
BUILD_FLAGS: -- -j
|
BUILD_FLAGS: -- -j
|
||||||
CTEST_FLAGS: -j4 --output-on-failure
|
CTEST_FLAGS: -j4 --output-on-failure -E checkperf
|
||||||
commands:
|
commands:
|
||||||
- apt-get update -qq
|
- apt-get update -qq
|
||||||
- apt-get install -y clang cmake git
|
- apt-get install -y clang cmake git
|
||||||
|
|
Loading…
Reference in New Issue