From 8d6d4c80b625e174a2b118350cfc3a22a63233d7 Mon Sep 17 00:00:00 2001 From: Pepe Iborra Date: Mon, 11 Sep 2017 20:54:33 +0100 Subject: [PATCH] Set up a build matrix for all the ghc versions supported by stack --- appveyor.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 9e4d10a..5a4856f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -9,6 +9,13 @@ environment: global: STACK_ROOT: "c:\\sr" VSVER: 14 + matrix: + - RESOLVER: lts-9.4 + - RESOLVER: lts-7.24 + - RESOLVER: lts-6.35 + - RESOLVER: lts-2.22 + - RESOLVER: nightly-2017-09-10 + install: - set PATH=C:\Program Files\Git\mingw64\bin;%PATH% # for curl @@ -17,8 +24,4 @@ install: - stack setup > nul test_script: -- stack --resolver lts-9.4 --no-system-ghc --install-ghc --jobs 1 test -- stack --resolver lts-7.24 --no-system-ghc --install-ghc --jobs 1 test -- stack --resolver lts-6.35 --no-system-ghc --install-ghc --jobs 1 test -- stack --resolver lts-2.22 --no-system-ghc --install-ghc --jobs 1 test -- stack --resolver nightly-2017-09-10 --no-system-ghc --install-ghc --jobs 1 test +- stack --resolver %RESOLVER% --no-system-ghc --install-ghc --jobs 1 test