forked from joefitzgerald/go-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
40 lines (32 loc) · 988 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
version: "{build}"
platform: x64
branches:
only:
- master
skip_tags: true
environment:
GOPATH: c:\gopath
GOVERSION: 1.7
APM_TEST_PACKAGES: go-config
matrix:
- ATOM_CHANNEL: stable
- ATOM_CHANNEL: beta
install:
- set PATH=%GOPATH%\bin;c:\go\bin;%PATH%
- rmdir c:\go /s /q
- appveyor DownloadFile https://storage.googleapis.com/golang/go%GOVERSION%.windows-amd64.zip
- 7z x go%GOVERSION%.windows-amd64.zip -y -oC:\ > NUL
- go version
- go env
- mkdir c:\gopath
- go get -u golang.org/x/tools/cmd/goimports
- go get -u github.com/sqs/goreturns
- go get -u golang.org/x/tools/cmd/cover
- go get -u github.com/nsf/gocode
- go get -u github.com/alecthomas/gometalinter
- go get -u github.com/zmb3/gogetdoc
- go get -u github.com/rogpeppe/godef
build_script:
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/atom/ci/943a16cd32926bdfcca703f16ec6a958a2db38a5/build-package.ps1'))
test: off
deploy: off