[commit: ghc] wip/circleci: CircleCI: Split up build and test steps (92ce1cf)
git at git.haskell.org
git at git.haskell.org
Fri Oct 27 14:50:11 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/circleci
Link : http://ghc.haskell.org/trac/ghc/changeset/92ce1cf34bff41a53464da997a6fbec434839726/ghc
>---------------------------------------------------------------
commit 92ce1cf34bff41a53464da997a6fbec434839726
Author: Ben Gamari <ben at smart-cactus.org>
Date: Wed Oct 25 19:21:02 2017 -0400
CircleCI: Split up build and test steps
>---------------------------------------------------------------
92ce1cf34bff41a53464da997a6fbec434839726
.circleci/config.yml | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 24e02e8..c3f76ca 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -23,4 +23,8 @@ jobs:
- run:
name: build
command: |
- THREADS=8 SKIP_PERF_TESTS=YES VERBOSE=2 ./validate --fast --quiet
+ THREADS=8 SKIP_PERF_TESTS=YES VERBOSE=2 ./validate --fast --quiet --build-only
+ - run:
+ name: test
+ command: |
+ THREADS=8 SKIP_PERF_TESTS=YES VERBOSE=2 ./validate --fast --quiet --testsuite-only
More information about the ghc-commits
mailing list