-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
50 lines (44 loc) · 1.4 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
language: android
jdk: oraclejdk8
sudo: required # false for Container-Based Infrastructure, required for Sudo-enabled Infrastructure
branches:
only:
- master
- develop
- feature/configure_travis
android:
components:
- tools
- platform-tools
- build-tools-26.0.2
- android-22
- android-26
- sys-img-armeabi-v7a-android-22
- extra-google-m2repository
- extra-android-m2repository
licenses:
- 'android-sdk-preview-license-.+'
- 'android-sdk-license-.+'
- 'google-gdk-license-.+'
before_script:
- android list targets
- yes | ls -la $ANDROID_HOME/tools/bin/
- echo no | android create avd --force -n test -t android-22 --abi armeabi-v7a
- emulator -avd test -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &
- |
if [ "$TRAVIS_PULL_REQUEST" != "false" ] && [ "$TRAVIS_BRANCH" = "master" ]; then
echo "Do not open PRs against master; merge dev into master locally and push instead."
exit 1
fi
script:
- ./gradlew clean build connectedCheck -PdisablePreDex
after_success:
- |
if [ "$TRAVIS_PULL_REQUEST" = "false" ] && [ "$TRAVIS_BRANCH" = "master" ]; then
echo "CI on master succeded. Executing release tasks..."
git fetch --unshallow
./gradlew bintrayUpload -PbintrayUser="$BINTRAY_USER" -PbintrayKey="$BINTRAY_KEY" -PdryRun=false
./plugin/ci/tag_release.sh
fi