Merge pull request #887 from simdjson/jkeiser/checkperf-less
Don't repeat circleci checkperf tests on drone
This commit is contained in:
commit
e7e6ac5bb3
20
.drone.yml
20
.drone.yml
|
@ -8,7 +8,7 @@ steps:
|
||||||
CC: gcc
|
CC: gcc
|
||||||
CXX: g++
|
CXX: g++
|
||||||
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 cmake
|
- apt-get install -y cmake
|
||||||
|
@ -33,7 +33,7 @@ steps:
|
||||||
CC: clang-6.0
|
CC: clang-6.0
|
||||||
CXX: clang++-6.0
|
CXX: clang++-6.0
|
||||||
BUILD_FLAGS: -- -j
|
BUILD_FLAGS: -- -j
|
||||||
CTEST_FLAGS: -j4 --output-on-failure
|
CTEST_FLAGS: -j4 --output-on-failure -E checkperf
|
||||||
commands:
|
commands:
|
||||||
- mkdir build
|
- mkdir build
|
||||||
- cd build
|
- cd build
|
||||||
|
@ -56,7 +56,7 @@ steps:
|
||||||
CXX: g++
|
CXX: g++
|
||||||
BUILD_FLAGS: -- -j
|
BUILD_FLAGS: -- -j
|
||||||
CMAKE_FLAGS: -DSIMDJSON_BUILD_STATIC=OFF
|
CMAKE_FLAGS: -DSIMDJSON_BUILD_STATIC=OFF
|
||||||
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 cmake
|
- apt-get install -y cmake
|
||||||
|
@ -78,7 +78,7 @@ steps:
|
||||||
CXX: clang++-9
|
CXX: clang++-9
|
||||||
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:
|
||||||
- mkdir build
|
- mkdir build
|
||||||
- cd build
|
- cd build
|
||||||
|
@ -93,10 +93,10 @@ steps:
|
||||||
- name: Build and Test
|
- name: Build and Test
|
||||||
image: gcc:9
|
image: gcc:9
|
||||||
environment:
|
environment:
|
||||||
BUILD_FLAGS: -- -j
|
|
||||||
CTEST_FLAGS: -j4 --output-on-failure -E checkperf
|
|
||||||
CC: gcc
|
CC: gcc
|
||||||
CXX: g++
|
CXX: g++
|
||||||
|
BUILD_FLAGS: -- -j
|
||||||
|
CTEST_FLAGS: -j4 --output-on-failure -E checkperf
|
||||||
commands:
|
commands:
|
||||||
- apt-get update -qq
|
- apt-get update -qq
|
||||||
- apt-get install -y cmake
|
- apt-get install -y cmake
|
||||||
|
@ -141,10 +141,10 @@ steps:
|
||||||
- name: Build and Test
|
- name: Build and Test
|
||||||
image: gcc:8
|
image: gcc:8
|
||||||
environment:
|
environment:
|
||||||
BUILD_FLAGS: -- -j
|
|
||||||
CTEST_FLAGS: -j4 --output-on-failure
|
|
||||||
CC: gcc
|
CC: gcc
|
||||||
CXX: g++
|
CXX: g++
|
||||||
|
BUILD_FLAGS: -- -j
|
||||||
|
CTEST_FLAGS: -j4 --output-on-failure
|
||||||
commands:
|
commands:
|
||||||
- apt-get update -qq
|
- apt-get update -qq
|
||||||
- apt-get install -y cmake
|
- apt-get install -y cmake
|
||||||
|
@ -189,7 +189,7 @@ steps:
|
||||||
CXX: g++
|
CXX: g++
|
||||||
BUILD_FLAGS: -- -j
|
BUILD_FLAGS: -- -j
|
||||||
CMAKE_FLAGS: -DSIMDJSON_BUILD_STATIC=OFF
|
CMAKE_FLAGS: -DSIMDJSON_BUILD_STATIC=OFF
|
||||||
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 cmake
|
- apt-get install -y cmake
|
||||||
|
@ -210,7 +210,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