From 9a02bcc68909b84217b53a90117f2de82f27db94 Mon Sep 17 00:00:00 2001 From: "Manu Mtz.-Almeida" Date: Fri, 12 Oct 2018 11:37:40 -0500 Subject: [PATCH] chore(ci): check for clean build --- .circleci/config.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3c74b4ffb4..a5c0dd9da1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -57,6 +57,17 @@ jobs: paths: - "*" + test-core-clean-build: + <<: *defaults + steps: + - checkout + - attach_workspace: + at: /tmp/workspace + - run: + name: Checking clean build + command: git diff --exit-code + working_directory: /tmp/workspace/core + test-core-lint: <<: *defaults steps: @@ -116,6 +127,8 @@ workflows: - build - build-core: requires: [build] + - test-core-clean-build: + requires: [build-core] - test-core-lint: requires: [build-core] - test-core-spec: