Skip linting step on 8.0

This commit is contained in:
patrick brisbin 2018-01-26 11:54:46 -05:00
parent 5d59c4e385
commit 8283d21997

View File

@ -34,7 +34,12 @@ references:
command: make test
- run:
name: Lint
command: make lint
command: |
if [ "${LINT:-1}" -eq 0 ]; then
echo "[LINT=0] Lint step skipped." >&2
else
make lint
fi
jobs:
build_7.10.3:
@ -44,6 +49,8 @@ jobs:
build_8.0.2:
<<: *stack_build
environment:
# FIXME: https://circleci.com/gh/thoughtbot/yesod-auth-oauth2/115
LINT: "0"
STACK_ARGUMENTS: --resolver lts-9.21
build_8.2.2:
<<: *stack_build