[commit: ghc] master: circleci: Create missing test-results directory (caffff1)
git at git.haskell.org
git at git.haskell.org
Tue Oct 2 13:17:28 UTC 2018
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/caffff1238097821cd2879f7285010a6565afd52/ghc
>---------------------------------------------------------------
commit caffff1238097821cd2879f7285010a6565afd52
Author: Ben Gamari <ben at smart-cactus.org>
Date: Tue Oct 2 09:16:27 2018 -0400
circleci: Create missing test-results directory
>---------------------------------------------------------------
caffff1238097821cd2879f7285010a6565afd52
.circleci/config.yml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/.circleci/config.yml b/.circleci/config.yml
index a9c4cef..53962c9 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
More information about the ghc-commits
mailing list