diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-05-12 11:48:40 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2016-05-12 11:48:40 -0700 |
commit | dd649f19a905dee87fd27adbfdf3ac3ca250238c (patch) | |
tree | 9d5e340b38016b72fed59eae722e061973ce3d0c | |
parent | 07a4320ba97cdd219e5cbb18f21dbbda00bc5543 (diff) | |
download | pandoc-dd649f19a905dee87fd27adbfdf3ac3ca250238c.tar.gz |
appveyor - enable automatic builds, fix zip creation.
-rw-r--r-- | appveyor.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/appveyor.yml b/appveyor.yml index 03075c698..05aa0c268 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -8,8 +8,8 @@ environment: cache: - "c:\\sr" # stack root, short paths == fewer problems - '%LOCALAPPDATA%\Programs\stack' # even less to install... - -build: off + +# build: off # this disables automatic builds install: - curl -ostack.zip -L --insecure http://www.stackage.org/stack/windows-i386 @@ -30,7 +30,8 @@ test_script: - echo "" | stack --no-terminal test after_test: - - ps: 7z a "pandoc.zip" "$(.\\stack.exe path --local-install-root)\\bin\\pandoc*.exe" + - ps: | + 7z a pandoc.zip $(.\stack.exe path --local-install-root)\bin\pandoc*.exe artifacts: - path: pandoc.zip |