19 lines
416 B
YAML
19 lines
416 B
YAML
cache:
|
|
- "c:\\sr -> appveyor.yml" #
|
|
- "%LOCALAPPDATA%\\Programs\\stack"
|
|
|
|
build: off
|
|
|
|
before_test:
|
|
- curl -ostack.zip -L --insecure http://www.stackage.org/stack/windows-i386
|
|
- 7z x stack.zip stack.exe
|
|
|
|
clone_folder: "c:\\project"
|
|
environment:
|
|
global:
|
|
STACK_ROOT: "c:\\sr"
|
|
|
|
test_script:
|
|
- stack setup > nul
|
|
- echo "" | stack --no-terminal build --test hledger hledger-web hledger-api # hledger-ui not supported
|