34 lines
729 B
YAML
34 lines
729 B
YAML
|
version: 0.{build}
|
||
|
pull_requests:
|
||
|
do_not_increment_build_number: true
|
||
|
branches:
|
||
|
only:
|
||
|
- next
|
||
|
|
||
|
os: Windows Server 2012 R2
|
||
|
|
||
|
# Custom clone folder (variables are not expanded here).
|
||
|
clone_folder: c:\influxdb
|
||
|
|
||
|
# Environment variables
|
||
|
environment:
|
||
|
GOROOT: C:\go111
|
||
|
GOFLAGS: "-mod=readonly"
|
||
|
|
||
|
# Scripts that run after cloning repository
|
||
|
install:
|
||
|
- choco install bzr # Needed to install go modules
|
||
|
- set PATH=%GOROOT%\bin;%GOPATH%\bin;C:\Program Files (x86)\Bazaar\;%PATH%
|
||
|
- echo %PATH%
|
||
|
- echo %GOPATH%
|
||
|
- cd C:\influxdb
|
||
|
- go version
|
||
|
- go env
|
||
|
|
||
|
build: false
|
||
|
deploy: false
|
||
|
|
||
|
test_script:
|
||
|
- echo "Appveyor needs to be re-enabled. See https://github.com/influxdata/influxdb/issues/10937"
|
||
|
# - go test -timeout 15m -v ./...
|