File tree 1 file changed +23
-0
lines changed
1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -273,6 +273,29 @@ steps:
273
273
- ASAN_OPTIONS="detect_leaks=0" ctest $CTEST_FLAGS -LE "acceptance|per_implementation" # Everything we haven't run yet, run now.
274
274
---
275
275
kind : pipeline
276
+ name : ninja-clang9
277
+ platform : { os: linux, arch: amd64 }
278
+ steps :
279
+ - name : Build and Test
280
+ image : conanio/clang9
281
+ user : root
282
+ environment :
283
+ CC : clang-9
284
+ CXX : clang++-9
285
+ BUILD_FLAGS : -- -j
286
+ CMAKE_FLAGS : -GNinja -DSIMDJSON_BUILD_STATIC=ON
287
+ CTEST_FLAGS : -j4 --output-on-failure
288
+ CXXFLAGS : -stdlib=libc++
289
+ commands :
290
+ - apt-get update -qq
291
+ - apt-get install -y cmake
292
+ - mkdir build
293
+ - cd build
294
+ - cmake $CMAKE_FLAGS ..
295
+ - cmake --build . $BUILD_FLAGS
296
+ - ctest $CTEST_FLAGS
297
+ ---
298
+ kind : pipeline
276
299
name : libcpp-clang9
277
300
platform : { os: linux, arch: amd64 }
278
301
steps :
You can’t perform that action at this time.
0 commit comments