Created
July 11, 2019 05:08
-
-
Save alvareztech/9d63b13868e2c794ee24bddce6da7b71 to your computer and use it in GitHub Desktop.
GitLab CI: Android Basic Build and Deploy to HocketApp
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: openjdk:8-jdk | |
variables: | |
ANDROID_COMPILE_SDK: "29" | |
ANDROID_BUILD_TOOLS: "29.0.0" | |
ANDROID_SDK_TOOLS: "4333796" | |
before_script: | |
- apt-get --quiet update --yes | |
- apt-get --quiet install --yes wget tar unzip lib32stdc++6 lib32z1 | |
- wget --quiet --output-document=android-sdk.zip https://dl.google.com/android/repository/sdk-tools-linux-${ANDROID_SDK_TOOLS}.zip | |
- unzip -d android-sdk-linux android-sdk.zip | |
- echo y | android-sdk-linux/tools/bin/sdkmanager "platforms;android-${ANDROID_COMPILE_SDK}" >/dev/null | |
- echo y | android-sdk-linux/tools/bin/sdkmanager "platform-tools" >/dev/null | |
- echo y | android-sdk-linux/tools/bin/sdkmanager "build-tools;${ANDROID_BUILD_TOOLS}" >/dev/null | |
- export ANDROID_HOME=$PWD/android-sdk-linux | |
- export PATH=$PATH:$PWD/android-sdk-linux/platform-tools/ | |
- chmod +x ./gradlew | |
# temporarily disable checking for EPIPE error and use yes to accept all licenses | |
- set +o pipefail | |
- yes | android-sdk-linux/tools/bin/sdkmanager --licenses | |
- set -o pipefail | |
stages: | |
- build | |
- deploy | |
assembleDebug: | |
stage: build | |
script: | |
- ./gradlew assembleDebug | |
artifacts: | |
paths: | |
- app/build/outputs/ | |
share: | |
stage: deploy | |
script: | |
- | | |
curl \ | |
-F "status=2" \ | |
-F "notify=2" \ | |
-F "notes=Some new features and fixed bugs." \ | |
-F "notes_type=0" \ | |
-F "ipa=@app/build/outputs/apk/debug/app-debug.apk" \ | |
-H "X-HockeyAppToken: 123456789" \ | |
https://rink.hockeyapp.net/api/2/apps/upload/ | |
dependencies: | |
- assembleDebug |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment