Skip to content

Commit

Permalink
Merge 05a53e9 into dbe63cc
Browse files Browse the repository at this point in the history
  • Loading branch information
pelletier committed Jul 18, 2018
2 parents dbe63cc + 05a53e9 commit fd72eec
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
version: "{build}"

# Source Config

clone_folder: c:\gopath\src\github.com\pelletier\go-toml

# Build host

environment:
GOPATH: c:\gopath
DEPTESTBYPASS501: 1
GOVERSION: 1.9

init:
- git config --global core.autocrlf input

# Build

install:
# Install the specific Go version.
- rmdir c:\go /s /q
- appveyor DownloadFile https://storage.googleapis.com/golang/go%GOVERSION%.windows-amd64.msi
- msiexec /i go%GOVERSION%.windows-amd64.msi /q
- choco install bzr
- set Path=c:\go\bin;c:\gopath\bin;C:\Program Files (x86)\Bazaar\;C:\Program Files\Mercurial\%Path%
- go version
- go env

build: false
deploy: false

test_script:
- go build github.com/pelletier/go-toml
- go test

0 comments on commit fd72eec

Please sign in to comment.