aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.circleci/config.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 6cf1061..ca75335 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -15,6 +15,12 @@ jobs:
steps:
- checkout
- rebar3/ct
+ # Delete OTP files which don't need to be stored
+ - run: |
+ find _build/test/logs -type d -and \( -path "*/erts-*" -or -path "*/kernel-*" -or -path "*/stdlib-*" \) -exec rm -rf '{}' \+ || true
+ find _build/test/logs -type f -name "*.beam" -exec rm -rf '{}' \+ || true
+ - store_artifacts:
+ path: _build/test/logs
workflows:
build-test: