diff options
author | Alp Mestanogullari <alp@well-typed.com> | 2018-08-12 10:54:30 +0200 |
---|---|---|
committer | Krzysztof Gogolewski <krz.gogolewski@gmail.com> | 2018-08-12 10:54:30 +0200 |
commit | 193eeee6bdbd5b2ec38e26c70e8aa79ce7bd2f99 (patch) | |
tree | c44386cda8c87eef9c5caefa99996818689f6a6e /.circleci | |
parent | ec49b42bbff4ee81c825a0facee26b13f1f297a7 (diff) | |
download | haskell-193eeee6bdbd5b2ec38e26c70e8aa79ce7bd2f99.tar.gz |
use *test instead of *slowtest for llvm validation on Circle CI
Summary:
Since the LLVM backend is slow enough that *slowtest can't run
in the allocated time on Circle CI, let's just use *test. If that still
doesn't fit in the allocated 5 hours, we can try running just the
compiler tests.
Test Plan: Circle CI validation for LLVM
Reviewers: bgamari
Reviewed By: bgamari
Subscribers: rwbarton, thomie, carter
Differential Revision: https://phabricator.haskell.org/D5033
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 55cb87f670..19780abbe9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -207,7 +207,7 @@ jobs: - *boot - *configure_unix - *make - - *slowtest + - *test # Nightly build with -DDEBUG using devel2 flavour "validate-x86_64-linux-debug": |