-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
39 lines (39 loc) · 1.37 KB
/
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
version: 1.0.{build}
branches:
only:
- default
image:
- Visual Studio 2015
- Ubuntu1804
init:
- cmd: go version
- sh: sudo apt-get update -qq
- sh: sudo apt-get install -y -qq golang-go libgtk-3-dev
- sh: export DISPLAY=:1
- sh: Xvfb :1 -screen 0 1024x768x24 &
- sh: go version
clone_script:
- cmd: hg clone https://bitbucket.org/rj/goey %APPVEYOR_BUILD_FOLDER%/src/bitbucket.org/rj/goey
- cmd: set GOPATH=%APPVEYOR_BUILD_FOLDER%
- sh: hg clone https://bitbucket.org/rj/goey ${APPVEYOR_BUILD_FOLDER}/src/bitbucket.org/rj/goey
- sh: export GOPATH=${APPVEYOR_BUILD_FOLDER}
install:
- cmd: go get -d bitbucket.org/rj/goey
- cmd: go get -d bitbucket.org/rj/goey/icons
- sh: go get -d bitbucket.org/rj/goey
- sh: go get -d bitbucket.org/rj/goey/icons
build_script:
- cmd: go install -v bitbucket.org/rj/goey/...
- sh: go install -v bitbucket.org/rj/goey/...
test_script:
- cmd: go test -v bitbucket.org/rj/goey/base
- cmd: go test -v bitbucket.org/rj/goey/loop
- cmd: go test -v bitbucket.org/rj/goey
- cmd: go test -v bitbucket.org/rj/goey/animate
- cmd: go test -v bitbucket.org/rj/goey/icons
- sh: go test -v bitbucket.org/rj/goey/base
- sh: go test -v bitbucket.org/rj/goey/loop
- sh: go test -v bitbucket.org/rj/goey/dialog
- sh: go test -v bitbucket.org/rj/goey
- sh: go test -v bitbucket.org/rj/goey/animate
- sh: go test -v bitbucket.org/rj/goey/icons