aboutsummaryrefslogtreecommitdiffhomepage
path: root/.circleci
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2018-05-22 15:38:02 -0400
committerGravatar Jason Gross <jgross@mit.edu>2018-05-25 22:18:46 -0400
commit9531a44ecf57181c954ec41e66819899276c00c4 (patch)
tree9de1de121fee98b8e2b312d4da19d3b9a4843722 /.circleci
parentc792c9fc500cbc1cab14271ebc6a98cd516451b3 (diff)
Allow make clean to work on a fresh clone
The file `config/Makefile` doesn't exist unless we run `./configure`. We shouldn't have to run `./configure` to run `make clean`. We now no longer error in any case if `config/Makefile` doesn't exist; this is simpler than only not erroring if the target is `clean`. We also now test this property when building on CI. This fixes #7542
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 4d2fb1a4d..5a9f1f5d5 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -32,6 +32,10 @@ before_script: &before_script
steps:
- checkout
- run: *before_script
+ - run: &build-clean
+ name: Clean
+ command: |
+ make clean # ensure that `make clean` works on a fresh clone
- run: &build-configure
name: Configure
command: |