2019-02-23 02:55:22 +08:00
|
|
|
kind: pipeline
|
2019-10-07 03:39:55 +08:00
|
|
|
name: x64-quicktests
|
2019-07-31 06:21:50 +08:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
2019-02-23 02:55:22 +08:00
|
|
|
|
|
|
|
steps:
|
2019-10-07 03:39:55 +08:00
|
|
|
- name: quicktests
|
2019-02-23 02:55:22 +08:00
|
|
|
image: gcc:8
|
2019-10-07 03:39:55 +08:00
|
|
|
commands: [ make quicktests ]
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: x64-checkperf
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2019-08-13 04:03:56 +08:00
|
|
|
- name: checkperf
|
|
|
|
image: gcc:8
|
2019-09-03 00:46:05 +08:00
|
|
|
environment:
|
|
|
|
CHECKPERF_REPOSITORY: https://github.com/lemire/simdjson
|
2019-10-07 03:39:55 +08:00
|
|
|
commands: [ make checkperf ]
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: x64-build
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: gcc:8
|
|
|
|
commands: [ make, make amalgamate ]
|
2019-07-31 06:21:50 +08:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-10-07 03:39:55 +08:00
|
|
|
name: x64-slowtests
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: slowtests
|
|
|
|
image: gcc:8
|
|
|
|
commands: [ make slowtests ]
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: arm64-quicktests
|
2019-07-31 06:21:50 +08:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
steps:
|
2019-10-07 03:39:55 +08:00
|
|
|
- name: quicktests
|
2019-07-31 06:21:50 +08:00
|
|
|
image: gcc:8
|
2019-10-07 03:39:55 +08:00
|
|
|
commands: [ make quicktests ]
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: arm64-checkperf
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
steps:
|
2019-08-13 04:03:56 +08:00
|
|
|
- name: checkperf
|
|
|
|
image: gcc:8
|
2019-09-03 00:46:05 +08:00
|
|
|
environment:
|
|
|
|
CHECKPERF_REPOSITORY: https://github.com/lemire/simdjson
|
2019-10-07 03:39:55 +08:00
|
|
|
commands: [ make checkperf ]
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: arm64-build
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: gcc:8
|
|
|
|
commands: [ make, make amalgamate ]
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: arm64-slowtests
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: slowtests
|
|
|
|
image: gcc:8
|
|
|
|
commands: [ make slowtests ]
|
2019-07-31 06:21:50 +08:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-08-02 04:09:26 +08:00
|
|
|
name: stylecheck
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Build and Test
|
|
|
|
image: ubuntu:18.04
|
|
|
|
commands:
|
|
|
|
- apt-get update -y
|
|
|
|
- apt-get install -y python clang-format
|
|
|
|
- ./style/run-clang-format.py -r include/ benchmark/ src/ tests/
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-08-04 22:09:16 +08:00
|
|
|
name: amd64_clang_cmake_dynamic
|
2019-07-31 06:21:50 +08:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Build and Test
|
|
|
|
image: ubuntu:18.04
|
|
|
|
environment:
|
|
|
|
CC: clang
|
|
|
|
CXX: clang++
|
|
|
|
commands:
|
2019-10-07 03:39:55 +08:00
|
|
|
- apt-get update -qq
|
|
|
|
- apt-get install -y clang make cmake
|
2019-07-31 06:21:50 +08:00
|
|
|
- $CC --version
|
|
|
|
- mkdir build && cd build
|
2019-08-04 22:09:16 +08:00
|
|
|
- cmake -DSIMDJSON_BUILD_STATIC=OFF $CMAKE_FLAGS ..
|
|
|
|
- make -j
|
2019-08-10 05:26:05 +08:00
|
|
|
- ctest --output-on-failure
|
2019-08-04 22:09:16 +08:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: amd64_clang_cmake_static
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Build and Test
|
|
|
|
image: ubuntu:18.04
|
|
|
|
environment:
|
|
|
|
CC: clang
|
|
|
|
CXX: clang++
|
|
|
|
commands:
|
2019-10-07 03:39:55 +08:00
|
|
|
- apt-get update -qq
|
|
|
|
- apt-get install -y clang make cmake
|
2019-08-04 22:09:16 +08:00
|
|
|
- $CC --version
|
|
|
|
- mkdir build && cd build
|
|
|
|
- cmake -DSIMDJSON_BUILD_STATIC=ON $CMAKE_FLAGS ..
|
2019-07-31 06:21:50 +08:00
|
|
|
- make -j
|
2019-08-10 05:26:05 +08:00
|
|
|
- ctest --output-on-failure
|
2019-07-31 06:21:50 +08:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-08-04 22:09:16 +08:00
|
|
|
name: amd64_gcc_cmake_static
|
2019-07-31 06:21:50 +08:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Build and Test
|
2019-10-07 03:39:55 +08:00
|
|
|
image: gcc:7
|
2019-07-31 06:21:50 +08:00
|
|
|
environment:
|
|
|
|
CC: gcc
|
|
|
|
CXX: g++
|
|
|
|
commands:
|
2019-10-07 03:39:55 +08:00
|
|
|
- apt-get update -qq
|
|
|
|
- apt-get install -y cmake
|
2019-07-31 06:21:50 +08:00
|
|
|
- $CC --version
|
|
|
|
- mkdir build && cd build
|
2019-08-04 22:09:16 +08:00
|
|
|
- cmake -DSIMDJSON_BUILD_STATIC=ON $CMAKE_FLAGS ..
|
|
|
|
- make -j
|
2019-08-10 05:26:05 +08:00
|
|
|
- ctest --output-on-failure
|
2019-08-04 22:09:16 +08:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: amd64_gcc_cmake_dynamic
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Build and Test
|
2019-10-07 03:39:55 +08:00
|
|
|
image: gcc:7
|
2019-08-04 22:09:16 +08:00
|
|
|
environment:
|
|
|
|
CC: gcc
|
|
|
|
CXX: g++
|
|
|
|
commands:
|
2019-10-07 03:39:55 +08:00
|
|
|
- apt-get update -qq
|
|
|
|
- apt-get install -y cmake
|
2019-08-04 22:09:16 +08:00
|
|
|
- $CC --version
|
|
|
|
- mkdir build && cd build
|
|
|
|
- cmake -DSIMDJSON_BUILD_STATIC=OFF $CMAKE_FLAGS ..
|
2019-07-31 06:21:50 +08:00
|
|
|
- make -j
|
2019-08-10 05:26:05 +08:00
|
|
|
- ctest --output-on-failure
|
2019-07-31 06:21:50 +08:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-08-04 22:09:16 +08:00
|
|
|
name: arm64_clang_cmake_dynamic
|
2019-07-31 06:21:50 +08:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Build and Test
|
|
|
|
image: ubuntu:18.04
|
|
|
|
environment:
|
|
|
|
CC: clang
|
|
|
|
CXX: clang++
|
|
|
|
commands:
|
2019-10-07 03:39:55 +08:00
|
|
|
- apt-get update -qq
|
|
|
|
- apt-get install -y clang make cmake
|
2019-07-31 06:21:50 +08:00
|
|
|
- $CC --version
|
|
|
|
- mkdir build && cd build
|
2019-08-04 22:09:16 +08:00
|
|
|
- cmake -DSIMDJSON_BUILD_STATIC=OFF $CMAKE_FLAGS ..
|
2019-07-31 06:21:50 +08:00
|
|
|
- make -j
|
2019-08-10 05:26:05 +08:00
|
|
|
- ctest --output-on-failure
|
2019-07-31 06:21:50 +08:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-08-04 22:09:16 +08:00
|
|
|
name: arm64_gcc_cmake_dynamic
|
2019-07-31 06:21:50 +08:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Build and Test
|
2019-10-07 03:39:55 +08:00
|
|
|
image: gcc:7
|
2019-07-31 06:21:50 +08:00
|
|
|
environment:
|
|
|
|
CC: gcc
|
|
|
|
CXX: g++
|
|
|
|
commands:
|
2019-10-07 03:39:55 +08:00
|
|
|
- apt-get update -qq
|
|
|
|
- apt-get install -y cmake
|
2019-08-04 22:09:16 +08:00
|
|
|
- $CC --version
|
|
|
|
- mkdir build && cd build
|
|
|
|
- cmake -DSIMDJSON_BUILD_STATIC=OFF $CMAKE_FLAGS ..
|
|
|
|
- make -j
|
2019-08-10 05:26:05 +08:00
|
|
|
- ctest --output-on-failure
|
2019-08-04 22:09:16 +08:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: arm64_clang_cmake_static
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Build and Test
|
|
|
|
image: ubuntu:18.04
|
|
|
|
environment:
|
|
|
|
CC: clang
|
|
|
|
CXX: clang++
|
|
|
|
commands:
|
2019-10-07 03:39:55 +08:00
|
|
|
- apt-get update -qq
|
|
|
|
- apt-get install -y clang make cmake
|
2019-08-04 22:09:16 +08:00
|
|
|
- $CC --version
|
|
|
|
- mkdir build && cd build
|
|
|
|
- cmake -DSIMDJSON_BUILD_STATIC=ON $CMAKE_FLAGS ..
|
|
|
|
- make -j
|
2019-08-10 05:26:05 +08:00
|
|
|
- ctest --output-on-failure
|
2019-08-04 22:09:16 +08:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: arm64_gcc_cmake_static
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Build and Test
|
2019-10-07 03:39:55 +08:00
|
|
|
image: gcc:7
|
2019-08-04 22:09:16 +08:00
|
|
|
environment:
|
|
|
|
CC: gcc
|
|
|
|
CXX: g++
|
|
|
|
commands:
|
2019-10-07 03:39:55 +08:00
|
|
|
- apt-get update -qq
|
|
|
|
- apt-get install -y cmake
|
2019-08-04 22:09:16 +08:00
|
|
|
- $CC --version
|
|
|
|
- mkdir build && cd build
|
|
|
|
- cmake -DSIMDJSON_BUILD_STATIC=ON $CMAKE_FLAGS ..
|
|
|
|
- make -j
|
2019-08-10 05:26:05 +08:00
|
|
|
- ctest --output-on-failure
|
2019-08-04 22:09:16 +08:00
|
|
|
|
2019-08-10 05:26:05 +08:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: arm64_clang_cmake_sanitize
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Build and Test
|
|
|
|
image: ubuntu:18.04
|
|
|
|
environment:
|
|
|
|
CC: clang
|
|
|
|
CXX: clang++
|
|
|
|
commands:
|
2019-10-07 03:39:55 +08:00
|
|
|
- apt-get update -qq
|
|
|
|
- apt-get install -y clang make cmake
|
2019-08-10 05:26:05 +08:00
|
|
|
- $CC --version
|
|
|
|
- mkdir build && cd build
|
|
|
|
- cmake -DSIMDJSON_SANITIZE=ON $CMAKE_FLAGS ..
|
|
|
|
- make -j
|
|
|
|
- ASAN_OPTIONS="detect_leaks=0" ctest --output-on-failure
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: arm64_gcc_cmake_sanitize
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Build and Test
|
2019-10-07 03:39:55 +08:00
|
|
|
image: gcc:7
|
2019-08-10 05:26:05 +08:00
|
|
|
environment:
|
|
|
|
CC: gcc
|
|
|
|
CXX: g++
|
|
|
|
commands:
|
2019-10-07 03:39:55 +08:00
|
|
|
- apt-get update -qq
|
|
|
|
- apt-get install -y cmake
|
2019-08-10 05:26:05 +08:00
|
|
|
- $CC --version
|
|
|
|
- mkdir build && cd build
|
|
|
|
- cmake -DSIMDJSON_SANITIZE=ON $CMAKE_FLAGS ..
|
|
|
|
- make -j
|
|
|
|
- ASAN_OPTIONS="detect_leaks=0" ctest --output-on-failure
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: amd64_clang_cmake_sanitize
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Build and Test
|
|
|
|
image: ubuntu:18.04
|
|
|
|
environment:
|
|
|
|
CC: clang
|
|
|
|
CXX: clang++
|
|
|
|
commands:
|
|
|
|
- apt-get update -y
|
|
|
|
- apt-get install -y make $CC g++ cmake
|
|
|
|
- $CC --version
|
|
|
|
- mkdir build && cd build
|
|
|
|
- cmake -DSIMDJSON_SANITIZE=ON $CMAKE_FLAGS ..
|
|
|
|
- make -j
|
|
|
|
- ASAN_OPTIONS="detect_leaks=0" ctest --output-on-failure
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: amd64_gcc_cmake_sanitize
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Build and Test
|
2019-10-07 03:39:55 +08:00
|
|
|
image: gcc:7
|
2019-08-10 05:26:05 +08:00
|
|
|
environment:
|
|
|
|
CC: gcc
|
|
|
|
CXX: g++
|
|
|
|
commands:
|
2019-10-07 03:39:55 +08:00
|
|
|
- apt-get update -qq
|
|
|
|
- apt-get install -y cmake
|
2019-08-10 05:26:05 +08:00
|
|
|
- $CC --version
|
|
|
|
- mkdir build && cd build
|
|
|
|
- cmake -DSIMDJSON_SANITIZE=ON $CMAKE_FLAGS ..
|
|
|
|
- make -j
|
|
|
|
- ASAN_OPTIONS="detect_leaks=0" ctest --output-on-failure
|
2019-08-04 22:09:16 +08:00
|
|
|
|
2019-08-10 05:26:05 +08:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: amd64_clang_cmake_sanitize_noavx
|
2019-08-04 22:09:16 +08:00
|
|
|
|
2019-08-10 05:26:05 +08:00
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Build and Test
|
|
|
|
image: ubuntu:18.04
|
|
|
|
environment:
|
|
|
|
CC: clang
|
|
|
|
CXX: clang++
|
|
|
|
commands:
|
2019-10-07 03:39:55 +08:00
|
|
|
- apt-get update -qq
|
|
|
|
- apt-get install -y clang make cmake
|
2019-08-10 05:26:05 +08:00
|
|
|
- $CC --version
|
|
|
|
- mkdir build && cd build
|
|
|
|
- cmake -DSIMDJSON_SANITIZE=ON -DSIMDJSON_DISABLE_AVX=ON $CMAKE_FLAGS ..
|
|
|
|
- make -j
|
|
|
|
- ASAN_OPTIONS="detect_leaks=0" ctest --output-on-failure
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: amd64_gcc_cmake_sanitize_noavx
|
2019-08-04 22:09:16 +08:00
|
|
|
|
2019-08-10 05:26:05 +08:00
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
2019-08-04 22:09:16 +08:00
|
|
|
|
2019-08-10 05:26:05 +08:00
|
|
|
steps:
|
|
|
|
- name: Build and Test
|
2019-10-07 03:39:55 +08:00
|
|
|
image: gcc:7
|
2019-08-10 05:26:05 +08:00
|
|
|
environment:
|
|
|
|
CC: gcc
|
|
|
|
CXX: g++
|
|
|
|
commands:
|
2019-10-07 03:39:55 +08:00
|
|
|
- apt-get update -qq
|
|
|
|
- apt-get install -y cmake
|
2019-08-10 05:26:05 +08:00
|
|
|
- $CC --version
|
|
|
|
- mkdir build && cd build
|
|
|
|
- cmake -DSIMDJSON_SANITIZE=ON -DSIMDJSON_DISABLE_AVX=ON $CMAKE_FLAGS ..
|
|
|
|
- make -j
|
|
|
|
- ASAN_OPTIONS="detect_leaks=0" ctest --output-on-failure
|