diff options
author | Ben Gamari <ben@smart-cactus.org> | 2018-02-20 00:26:45 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-02-20 00:26:45 -0500 |
commit | 81a5e05d376c075a38e55bc124ea6226c1f3bef7 (patch) | |
tree | 76f0784995079d6474c28b5c078f46ecc295b30e /.circleci/config.yml | |
parent | 517c194095064c123b18b779c96c0866e0b3a6d9 (diff) | |
download | haskell-81a5e05d376c075a38e55bc124ea6226c1f3bef7.tar.gz |
circleci: Skip performance tests
Once we finally get the automation for #12758 we can re-enable these.
Diffstat (limited to '.circleci/config.yml')
-rw-r--r-- | .circleci/config.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 3e5a77f88e..e4f09a3a25 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -68,11 +68,11 @@ aliases: - &test run: name: Test - command: make test + command: make test SKIP_PERF_TESTS=YES - &slowtest run: name: Full Test - command: make slowtest + command: make slowtest SKIP_PERF_TESTS=YES - &bindist run: name: Create bindist |