diff options
author | Ben Gamari <ben@smart-cactus.org> | 2017-11-21 14:22:22 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-11-21 14:26:57 -0500 |
commit | d213ee8766aeba2d2add5390d46bdcdc42c5dd51 (patch) | |
tree | 22f1d8982e5d3d2fed6367f8aa2036742ded3033 /.circleci/config.yml | |
parent | 1b1ba9d440bb67f1e61fcff05604c291f0ff7998 (diff) | |
download | haskell-d213ee8766aeba2d2add5390d46bdcdc42c5dd51.tar.gz |
CircleCI: Disable artifact collection on OS X
The storeartifacts step inexplicably hangs on OS X. I am currently be working
with CircleCI support to resolve this.
Diffstat (limited to '.circleci/config.yml')
-rw-r--r-- | .circleci/config.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index b2e59eb50c..723d07c128 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -120,8 +120,9 @@ jobs: - *make - *test - *bindist - - *collectartifacts - - *storeartifacts + # Disabled due to CircleCI brokenness + #- *collectartifacts + #- *storeartifacts workflows: version: 2 |