mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-30 19:41:13 +08:00
1d9d2b1a19
* starting to refactor commands * work * not sure * all commands working! * actually add file * work in delay flag again * start to refactor out console printing * i hate line endings * simple travis test to find direct output * remove all direct printing from push/preview * checkin vendor * don't need this yet * forgot to commit these * make version explicit command * some code review * Add "check" subcommand. * move stuff to commands package * fix * comment out check for printlns. for now * alphabet hax * activedir flags gone. use creds instead * active dir doc update * remove bind specific flags. creds instead * default to zones dir * fix linux build * fix test * cleanup random global* vars * Clean up PowerShell docs * rename dump-ir to print-ir. combine with print-js
24 lines
434 B
YAML
24 lines
434 B
YAML
version: "{build}"
|
|
|
|
os: Windows Server 2012 R2
|
|
|
|
clone_folder: c:\gopath\src\github.com\urfave\cli
|
|
|
|
environment:
|
|
GOPATH: C:\gopath
|
|
GOVERSION: 1.6
|
|
PYTHON: C:\Python27-x64
|
|
PYTHON_VERSION: 2.7.x
|
|
PYTHON_ARCH: 64
|
|
|
|
install:
|
|
- set PATH=%GOPATH%\bin;C:\go\bin;%PATH%
|
|
- go version
|
|
- go env
|
|
- go get github.com/urfave/gfmrun/...
|
|
- go get -v -t ./...
|
|
|
|
build_script:
|
|
- python runtests vet
|
|
- python runtests test
|
|
- python runtests gfmrun
|