yesod/appveyor.yml
ncaq 6187c3cf09 cleaned: appveyor: Easier to detect bugs
* appveyor.yml conf file to simple from offcial reference
* Make the cache easier to use by commenting out
* fixed clone directory, from stack to yesod
* curl check https
* stack URL
* split build and test, So we can easy detect build or test error
* test job to single thread, So we can easy find bug of test
2018-06-20 10:49:28 +09:00

16 lines
298 B
YAML

# cache:
# - '%AppData%\stack'
install:
- curl -sS -ostack.zip -L https://get.haskellstack.org/stable/windows-i386.zip
- 7z x stack.zip stack.exe
- stack setup > nul
build: off
build_script:
- stack --no-terminal test --no-run-tests
test_script:
- stack --jobs 1 --no-terminal test