blob: af1bb3ada6a1e20e80cc4ba798a90c382ede4699 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
init:
- 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\gohugoio\hugo
install:
- gem install asciidoctor
- pip install docutils
- go get github.com/magefile/mage
build_script:
- mage hugoRace
- mage -v check
- hugo -s docs/
- hugo --renderToMemory -s docs/
|