cutego/circle.yml
2016-10-08 00:30:13 +02:00

16 lines
571 B
YAML
Executable file

machine:
environment:
OS: linux
CI: true
DESKTOP: true
ANDROID: true
GOPATH: /home/ubuntu/.go_project
dependencies:
pre:
- go get -v -d github.com/therecipe/qt
- if [[ "$OS" == "linux" ]]; then $GOPATH/src/github.com/therecipe/qt/internal/ci/linux.sh; fi
test:
override:
- if [[ "$DESKTOP" == "true" ]]; then $GOPATH/src/github.com/therecipe/qt/setup.sh; else go run $GOPATH/src/github.com/therecipe/qt/internal/setup/generate.go; fi
- if [[ "$ANDROID" == "true" ]]; then $GOPATH/src/github.com/therecipe/qt/setup.sh android; fi