From f1cf1d82abb71fcddfaae77b06509e056755a45a Mon Sep 17 00:00:00 2001 From: patrick brisbin Date: Tue, 11 Sep 2018 07:07:59 -0400 Subject: [PATCH] Disable linting on nightly --- .circleci/config.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8594092..fa4ce30 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -39,7 +39,10 @@ references: command: make test - run: name: Lint - command: make lint + command: | + if [ "${LINT:-1}" = 1 ]; then + make lint + fi jobs: build_8.2.2: @@ -57,6 +60,9 @@ jobs: build_nightly: <<: *stack_build environment: + # weeder is not happy, again + # https://circleci.com/gh/thoughtbot/yesod-auth-oauth2/375 + LINT: 0 STACK_ARGUMENTS: --resolver nightly --no-terminal STACK_YAML: stack-nightly.yaml