diff options
author | Ben Gamari <ben@smart-cactus.org> | 2018-10-02 09:16:27 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-10-02 09:17:02 -0400 |
commit | caffff1238097821cd2879f7285010a6565afd52 (patch) | |
tree | 9d9c33c2ef3ec88785bec00770e75f96931e4fbd /.circleci | |
parent | a57fa24746421c0e13d0c09b72cbabea3622779f (diff) | |
download | haskell-caffff1238097821cd2879f7285010a6565afd52.tar.gz |
circleci: Create missing test-results directory
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index a9c4cef207..53962c96ee 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -71,7 +71,9 @@ aliases: - &slowtest run: name: Full Test - command: make slowtest SKIP_PERF_TESTS=YES THREADS=`mk/detect-cpu-count.sh` JUNIT_FILE=../../test-results/junit.xml + command: | + mkdir -p test-results + make slowtest SKIP_PERF_TESTS=YES THREADS=`mk/detect-cpu-count.sh` JUNIT_FILE=../../test-results/junit.xml - &bindist run: name: Create bindist |