cutego/circle.yml

16 lines
619 B
YAML
Raw Normal View History

2016-10-07 19:03:28 +03:00
machine:
2016-10-07 21:36:40 +03:00
environment:
OS: linux
CI: true
DESKTOP: true
ANDROID: true
2016-10-08 01:07:28 +03:00
GOPATH: /home/ubuntu/.go_project
2016-10-07 19:03:28 +03:00
dependencies:
2016-10-08 01:07:28 +03:00
pre:
2016-10-08 01:35:55 +03:00
- go get -d github.com/therecipe/qt
2016-10-08 02:43:15 +03:00
- if [[ "$OS" == "linux" ]]; then /home/ubuntu/.go_project/src/github.com/therecipe/qt/internal/ci/linux.sh; fi
2016-10-07 21:36:40 +03:00
test:
2016-10-08 02:43:15 +03:00
override:
- if [[ "$DESKTOP" == "true" ]]; then /home/ubuntu/.go_project/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 /home/ubuntu/.go_project/src/github.com/therecipe/qt/setup.sh android; fi