aboutsummaryrefslogtreecommitdiff
path: root/.circleci/config.yml
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2020-04-28 16:13:13 -0400
committerGitHub <noreply@github.com>2020-04-28 16:13:13 -0400
commit6cc450d8ff714af09374f9bc07aea8bb05f74a5c (patch)
tree1a211fa22e3e68b7cec8af53395637bebcb1f105 /.circleci/config.yml
parentbdd8485de4cde8dba67b27146feda5fd821cd7ef (diff)
parent0f4aa4d47e7bf98c10d461639782a2361becb8c0 (diff)
downloadspmc-6cc450d8ff714af09374f9bc07aea8bb05f74a5c.tar.gz
Merge pull request #32 from jhunkeler/circle-tests
Try to store ctest results
Diffstat (limited to '.circleci/config.yml')
-rw-r--r--.circleci/config.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 54b5d9e..258d452 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -6,6 +6,7 @@ jobs:
- image: centos:7
environment:
+ TEST_RESULTS: /tmp/test-results
MALLOC_CHECK_: 1
working_directory: ~/build
@@ -39,6 +40,9 @@ jobs:
command: |
.circleci/test_spm.sh
+ - store_test_results:
+ path: /tmp/test-results
+
build-macos:
macos:
xcode: 11.4.0
@@ -46,6 +50,7 @@ jobs:
environment:
HOMEBREW_NO_AUTO_UPDATE: 1
DYLD_INSERT_LIBRARIES: /usr/lib/libgmalloc.dylib
+ TEST_RESULTS: /tmp/test-results
steps:
- checkout
@@ -70,6 +75,9 @@ jobs:
command: |
.circleci/test_spm.sh
+ - store_test_results:
+ path: /tmp/test-results
+
workflows:
version: 2
build-and-test: