cutego/circle.yml
2016-10-30 03:53:56 +01:00

25 lines
752 B
YAML
Executable file

machine:
environment:
OS: linux
CI: true
QT_STUB: true
DESKTOP: true
ANDROID: true
QT_WINDOWS_CC: true
GOROOT: /usr/local/go
GOPATH: /home/ubuntu/.go_project
JDK_DIR: /usr/lib/jvm/java-8-openjdk-amd64
dependencies:
pre:
override:
- go get -v github.com/therecipe/qt/cmd/...
- if [[ "$OS" == "linux" ]]; then /home/ubuntu/.go_project/src/github.com/therecipe/qt/internal/ci/linux.sh; fi
post:
test:
pre:
override:
- 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
post: