From f94647a5e966ff41dfd0c38315c7265abefe41c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Sat, 20 Jun 2020 17:58:43 +0200 Subject: [PATCH] ci: Add "no-exceptions" job --- circle.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/circle.yml b/circle.yml index 51b0022f..761c0bc3 100644 --- a/circle.yml +++ b/circle.yml @@ -142,6 +142,17 @@ jobs: - build_and_test - benchmark + no-exceptions: + environment: + - BUILD_TYPE: Release + - CMAKE_OPTIONS: -DEXCEPTIONS=OFF -DRTTI=OFF + docker: + - image: ethereum/cpp-build-env:14-gcc-10 + steps: + - install_deps + - build_and_test + - benchmark + linux-32bit: environment: - BUILD_PARALLEL_JOBS: 4 @@ -211,6 +222,7 @@ workflows: - linux-clang-coverage - linux-clang-asan - linux-clang-ubsan + - no-exceptions - linux-32bit - fuzzing - macos