Created
April 15, 2017 07:54
-
-
Save ssx/8aa5675dea2793f8533c57b4728929eb to your computer and use it in GitHub Desktop.
.gitlab-ci.yml for Appcelerator CI testing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
image: hellossx/appcelerator-ci | |
variables: | |
JAVA_HOME: "/usr/lib/jvm/java-8-oracle/" | |
ANDROID_HOME: "/usr/local/android/android-sdk-linux" | |
cache: | |
key: "costings_app" | |
untracked: true | |
stages: | |
- test | |
npm_tasks: | |
stage: test | |
script: | |
- npm install | |
run_jasmine_tests: | |
stage: test | |
script: | |
- tisdk install 6.0.3.GA | |
- ti build -p android -b | |
- npm test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment