wulkanowy-mod/.travis.yml

69 lines
2.1 KiB
YAML
Raw Permalink Normal View History

2018-11-23 05:38:55 -06:00
language: android
jdk: oraclejdk8
env:
global:
2020-10-02 18:08:57 -05:00
- ANDROID_API_LEVEL=30
- ANDROID_BUILD_TOOLS_VERSION=30.0.2
2018-11-23 05:38:55 -06:00
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
2019-06-07 07:12:52 -05:00
branches:
only:
- develop
2021-01-20 11:29:13 -06:00
- 0.24.0
2018-11-23 05:38:55 -06:00
android:
licenses:
- android-sdk-preview-license-.+
- android-sdk-license-.+
- google-gdk-license-.+
components:
- tools
- platform-tools
# The BuildTools version used by your project
- build-tools-$ANDROID_BUILD_TOOLS_VERSION
# The SDK version used to compile your project
- android-$ANDROID_API_LEVEL
2020-10-02 18:08:57 -05:00
# Additional components
2018-11-23 05:38:55 -06:00
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
- addon-google_apis-google-$ANDROID_API_LEVEL
2020-10-02 18:08:57 -05:00
# Android emulator
2019-10-05 15:32:55 -05:00
- android-22
- sys-img-armeabi-v7a-android-22
2018-11-23 05:38:55 -06:00
2020-10-02 18:08:57 -05:00
before_install:
- yes | sdkmanager "platforms;android-30"
- yes | sdkmanager "build-tools;30.0.2"
2018-11-23 05:38:55 -06:00
before_script:
2020-10-02 18:08:57 -05:00
# Launch emulator before the execution
- 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 &
- "curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | sudo bash"
2018-11-23 05:38:55 -06:00
script:
2019-01-25 13:54:27 -06:00
- ./gradlew dependencies --stacktrace --daemon
2018-11-23 05:38:55 -06:00
- fossa --no-ansi || true
2020-09-20 14:54:59 -05:00
- ./gradlew -Pcoverage testFdroidDebugUnitTest --stacktrace --daemon
- ./gradlew -Pcoverage connectedFdroidDebugAndroidTest --stacktrace --daemon
- ./gradlew -Pcoverage jacocoTestReport --stacktrace --daemon
2018-11-23 05:38:55 -06:00
- |
if [ $TRAVIS_TAG ]; then
2018-12-13 17:20:54 -06:00
gpg --yes --batch --passphrase=$SERVICES_ENCRYPT_KEY ./app/src/release/google-services.json.gpg;
2020-10-30 06:31:41 -05:00
gpg --yes --batch --passphrase=$SERVICES_ENCRYPT_KEY ./app/src/release/agconnect-services.json.gpg;
2018-12-16 17:44:25 -06:00
gpg --yes --batch --passphrase=$ENCRYPT_KEY ./app/key.p12.gpg;
gpg --yes --batch --passphrase=$ENCRYPT_KEY ./app/upload-key.jks.gpg;
2024-03-09 03:03:36 -06:00
./gradlew publishPlayRelease --stacktrace;
2018-11-23 05:38:55 -06:00
fi
after_success:
- bash <(curl -s https://codecov.io/bash)