* 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
16 lines
298 B
YAML
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
|