update nightly resolver (#208)

* update nightly resolver

* hmm
This commit is contained in:
Matt Parsons 2020-10-28 10:40:22 -06:00 committed by GitHub
parent 4887bc19fe
commit 56d1e348c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 5 deletions

View File

@ -37,12 +37,11 @@ install:
- psql -c "CREATE USER esqutest WITH PASSWORD 'esqutest';" -U postgres - psql -c "CREATE USER esqutest WITH PASSWORD 'esqutest';" -U postgres
- createdb -O esqutest esqutest - createdb -O esqutest esqutest
- mysql -e 'CREATE DATABASE esqutest;' - mysql -e 'CREATE DATABASE esqutest;'
- stack setup
script: script:
- stack setup - stack build --fast $(if [[ $GHCVER == "nightly" ]]; then echo "--resolver nightly"; fi)
- stack update - stack test --fast $(if [[ $GHCVER == "nightly" ]]; then echo "--resolver nightly"; fi)
- stack build
- stack test
- cd test/expected-compile-failures/ - cd test/expected-compile-failures/
- bash test.sh - bash test.sh

View File

@ -1,4 +1,4 @@
resolver: nightly-2020-01-24 resolver: nightly-2020-09-20
packages: packages:
- '.' - '.'
- 'examples' - 'examples'