From d65d0b738677b3aec7513a1d7c70feaae8a2e8ec Mon Sep 17 00:00:00 2001 From: patrick brisbin Date: Sat, 21 Apr 2018 08:53:22 -0400 Subject: [PATCH] Use lts-11.5 for 8.2 job This is same GHC version, but newer other packages, which we need after updating for yesod-1.6. The 11.5 yaml is equivalent to stack.yaml, but we'll keep it distinct for when we update our default development resolver. --- .circleci/config.yml | 2 +- stack-lts-10.3.yaml | 6 ------ stack-lts-11.5.yaml | 4 ++++ 3 files changed, 5 insertions(+), 7 deletions(-) delete mode 100644 stack-lts-10.3.yaml create mode 100644 stack-lts-11.5.yaml diff --git a/.circleci/config.yml b/.circleci/config.yml index ccf657b..df7bc1b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -51,7 +51,7 @@ jobs: build_8.2.2: <<: *stack_build environment: - STACK_ARGUMENTS: --stack-yaml stack-lts-10.3.yaml + STACK_ARGUMENTS: --stack-yaml stack-lts-11.5.yaml build: <<: *stack_build build_nightly: diff --git a/stack-lts-10.3.yaml b/stack-lts-10.3.yaml deleted file mode 100644 index af1341f..0000000 --- a/stack-lts-10.3.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -resolver: lts-10.3 -extra-deps: - - http-types-0.12.1 - - yesod-auth-1.6.3 - - yesod-core-1.6.3 diff --git a/stack-lts-11.5.yaml b/stack-lts-11.5.yaml new file mode 100644 index 0000000..692d5e7 --- /dev/null +++ b/stack-lts-11.5.yaml @@ -0,0 +1,4 @@ +--- +resolver: lts-11.5 +extra-deps: + - hoauth2-1.7.1