From 0d1b4d6f33e97027463ab23d0dbb37e8be1ba120 Mon Sep 17 00:00:00 2001 From: chriseth Date: Tue, 16 Oct 2018 14:21:18 +0200 Subject: Add clang7 build step --- .circleci/config.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index c975740d..2967e1fb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -139,6 +139,29 @@ jobs: paths: - "*" + build_x86_clang7: + docker: + - image: buildpack-deps:cosmic + environment: + TERM: xterm + CC: /usr/bin/clang-7 + CXX: /usr/bin/clang++-7 + steps: + - checkout + - run: + name: Install build dependencies + command: | + apt-get -qq update + apt-get -qy install clang-7 cmake libboost-regex-dev libboost-filesystem-dev libboost-test-dev libboost-system-dev libboost-program-options-dev libz3-dev + ./scripts/install_obsolete_jsoncpp_1_7_4.sh + - run: *setup_prerelease_commit_hash + - run: *run_build + - store_artifacts: *solc_artifact + - persist_to_workspace: + root: build + paths: + - "*" + build_x86_mac: macos: xcode: "10.0.0" @@ -296,6 +319,7 @@ workflows: requires: - build_emscripten - build_x86_linux: *build_on_tags + - build_x86_clang7: *build_on_tags - build_x86_mac: *build_on_tags - test_x86_linux: <<: *build_on_tags -- cgit