cutego/circle.yml

25 lines
819 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
2016-10-28 05:00:58 +03:00
QT_STUB: true
2016-10-07 21:36:40 +03:00
DESKTOP: true
ANDROID: true
QT_WINDOWS_CC: true
2016-10-08 05:53:14 +03:00
GOROOT: /usr/local/go
2016-10-23 06:00:53 +03:00
GOPATH: /home/ubuntu/.go_project
2016-10-08 05:35:14 +03:00
JDK_DIR: /usr/lib/jvm/java-8-openjdk-amd64
2016-10-07 19:03:28 +03:00
dependencies:
2016-10-08 01:07:28 +03:00
pre:
2016-10-08 05:11:32 +03:00
override:
- go get -d github.com/therecipe/qt
- if [[ "$OS" == "linux" ]]; then /home/ubuntu/.go_project/src/github.com/therecipe/qt/internal/ci/linux.sh; fi
post:
2016-10-07 21:36:40 +03:00
test:
2016-10-08 05:11:32 +03:00
pre:
2016-10-08 02:43:15 +03:00
override:
2016-10-28 05:00:58 +03:00
- if [[ "$DESKTOP" == "true" ]]; then /home/ubuntu/.go_project/src/github.com/therecipe/qt/setup.sh; fi
2016-10-08 02:43:15 +03:00
- if [[ "$ANDROID" == "true" ]]; then /home/ubuntu/.go_project/src/github.com/therecipe/qt/setup.sh android; fi
- if [[ "$QT_WINDOWS_CC" == "true" ]]; then /home/ubuntu/.go_project/src/github.com/therecipe/qt/setup.sh windows; fi
2016-10-08 05:11:32 +03:00
post: