Add Windows build config to Travis
authorEmir Beganović <beganovic.emir@gmail.com>
Tue, 13 Nov 2018 10:39:54 +0000 (10:39 +0000)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 13 Nov 2018 10:39:54 +0000 (11:39 +0100)
.travis.yml

index efc3758e14823bbd9eeb904f7ab6216141a09db6..fd5c281fdaaaa67bcac2d262d0fff3bfdc1da6d8 100644 (file)
@@ -2,7 +2,8 @@ language: go
 sudo: false
 dist: trusty
 env:
-  HUGO_BUILD_TAGS="extended"
+  global:
+  - HUGO_BUILD_TAGS="extended"
 git:
   depth: false
 go:
@@ -11,10 +12,15 @@ go:
 os:
   - linux
   - osx
+  - windows
 matrix:
   allow_failures:
     - go: tip
   fast_finish: true
+  exclude:
+  - os: windows
+    go: tip
+
 install:
   - mkdir -p $HOME/src
   - mv $HOME/gopath/src/github.com/gohugoio/hugo $HOME/src
@@ -22,12 +28,17 @@ install:
   - cd $HOME/src/hugo
   - go get github.com/magefile/mage
 script:
-- go mod download
-- mage -v test
-- mage -v check
-- mage -v hugo
-- ./hugo -s docs/
-- ./hugo --renderToMemory -s docs/
+  - go mod download
+  - mage -v test
+  - mage -v check
+  - mage -v hugo
+  - ./hugo -s docs/
+  - ./hugo --renderToMemory -s docs/
+  - df -h
+
 before_install:
+  - df -h
+    # https://travis-ci.community/t/go-cant-find-gcc-with-go1-11-1-on-windows/293/5
+  - if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then choco install mingw -y; export PATH=/c/tools/mingw64/bin:"$PATH"; fi
   - gem install asciidoctor
   - type asciidoctor