summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorCameron Moore <moorereason@gmail.com>2017-03-08 23:33:02 -0600
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-03-09 09:31:22 +0100
commit560ed6e686f19c58dc98af9f47bb35c81f4d7979 (patch)
treed4e28e2e118c77bd8ace854513e77f7c6616f93c /appveyor.yml
parent45b9d7223a8098f3c19871ec695c79384bc40871 (diff)
Update appveyor config
Remove "image" setting as the "WMF 5" image is deprecated. Fixes #3061, #3142
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml34
1 files changed, 12 insertions, 22 deletions
diff --git a/appveyor.yml b/appveyor.yml
index cab6d9a24..d55058d45 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,27 +1,17 @@
-image: WMF 5
-clone_folder: c:\GOPATH\src\github.com\spf13\hugo
init:
-- cmd: >-
- set PATH=%PATH%;C:\MinGW\bin;C:\GOPATH\bin
+ - copy c:\MinGW\bin\mingw32-make.exe c:\MinGW\bin\make.exe
+ - set PATH=%PATH%;C:\MinGW\bin;%GOPATH%\bin
+ - go version
+ - go env
+
+# clones and cd's to path
+clone_folder: C:\GOPATH\src\github.com\spf13\hugo
- copy c:\MinGW\bin\mingw32-make.exe c:\MinGW\bin\make.exe
-environment:
- GOPATH: c:\GOPATH
install:
-- cmd: >-
- gem install asciidoctor
+ - gem install asciidoctor
+ - pip install docutils
- pip install docutils
build_script:
-- cmd: make vendor
-test_script:
-- cmd: >-
- go version
-
- go env
-
- make hugo-race check
-
- hugo -s docs/
-
- hugo --renderToMemory -s docs/
+ - make hugo-race check
+ - hugo -s docs/
+ - hugo --renderToMemory -s docs/