cutego/circle.yml

23 lines
721 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
DESKTOP: true
ANDROID: true
2017-02-16 00:36:55 +03:00
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:
2016-10-30 05:53:56 +03:00
- go get -v github.com/therecipe/qt/cmd/...
2016-10-08 05:11:32 +03:00
- 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-30 00:28:13 +03:00
- if [[ "$DESKTOP" == "true" ]]; then /home/ubuntu/.go_project/bin/qtsetup; fi
- if [[ "$ANDROID" == "true" ]]; then /home/ubuntu/.go_project/bin/qtsetup android; fi
- if [[ "$QT_WINDOWS_CC" == "true" ]]; then /home/ubuntu/.go_project/bin/qtsetup windows; fi
2016-10-08 05:11:32 +03:00
post: