Killing two tests

This commit is contained in:
Daniel Lemire 2020-06-03 17:28:41 +00:00
parent 44e169044c
commit 6a16e21f6a

View file

@ -91,24 +91,6 @@ steps:
- ctest . --output-on-failure
---
kind: pipeline
name: arm64-clang6
platform: { os: linux, arch: arm64 }
steps:
- name: Build and Test
image: ubuntu:18.04
environment:
CC: clang-6.0
CXX: clang++-6.0
commands:
- apt-get update -qq
- apt-get install -y cmake
- mkdir build
- cd build
- cmake ..
- cmake --build .
- ctest . --output-on-failure
---
kind: pipeline
name: arm64-sanitize-gcc8
platform: { os: linux, arch: arm64 }
steps:
@ -127,24 +109,6 @@ steps:
- ASAN_OPTIONS="detect_leaks=0" ctest . --output-on-failure
---
kind: pipeline
name: arm64-sanitize-clang6
platform: { os: linux, arch: arm64 }
steps:
- name: Build and Test
image: ubuntu:18.04
environment:
CC: clang-6.0
CXX: clang++-6.0
commands:
- apt-get update -qq
- apt-get install -y clang cmake
- mkdir build
- cd build
- cmake .. -DFAST_DOUBLE_PARSER_SANITIZE=ON
- cmake --build .
- ASAN_OPTIONS="detect_leaks=0" ctest . --output-on-failure
---
kind: pipeline
name: libcpp-clang9
platform: { os: linux, arch: amd64 }
steps: