Drop disable 8.0.2 build

This commit is contained in:
patrick brisbin 2018-07-28 14:17:36 -04:00
parent 6f55384a29
commit 2134605bf2
No known key found for this signature in database
GPG Key ID: 4243EA839B9CC425
3 changed files with 4 additions and 22 deletions

View File

@ -34,20 +34,9 @@ references:
command: make test
- run:
name: Lint
command: |
if [ "${LINT:-1}" -eq 0 ]; then
echo "[LINT=0] Lint step skipped." >&2
else
make lint
fi
command: make lint
jobs:
build_8.0.2:
<<: *stack_build
environment:
# FIXME: https://circleci.com/gh/thoughtbot/yesod-auth-oauth2/115
LINT: "0"
STACK_ARGUMENTS: --stack-yaml stack-lts-9.21.yaml
build_8.2.2:
<<: *stack_build
environment:
@ -63,7 +52,6 @@ workflows:
version: 2
builds:
jobs:
# - build_8.0.2
- build_8.2.2
- build
- build_nightly

View File

@ -6,7 +6,7 @@ setup:
stack build $(STACK_ARGUMENTS) \
--flag yesod-auth-oauth2:example \
--dependencies-only --test --no-run-tests
stack install $(STACK_ARGUMENTS) hlint weeder
stack install $(STACK_ARGUMENTS) --copy-compiler-tool hlint weeder
.PHONY: build
build:
@ -23,8 +23,8 @@ test:
.PHONY: lint
lint:
hlint src test
weeder .
stack exec hlint src test
stack exec weeder .
.PHONY: clean
clean:

View File

@ -1,6 +0,0 @@
---
resolver: lts-9.21
extra-deps:
- load-env-0.1.2
- yesod-auth-1.6.1
- yesod-core-1.6.1