Skip to content

Instantly share code, notes, and snippets.

@amin3536
Created January 14, 2019 19:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amin3536/fcd5807a8f4d02f767881db00f8e49b8 to your computer and use it in GitHub Desktop.
Save amin3536/fcd5807a8f4d02f767881db00f8e49b8 to your computer and use it in GitHub Desktop.
#مشخص کردن ایمج داکر
image: openjdk:8-jdk
# تعریف وریبل ها
variables:
ANDROID_COMPILE_SDK: "28"
ANDROID_BUILD_TOOLS: "28.0.2"
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
- test
# مرحله دیباگ میاد گردل با استفاده از دستور بش ران میکنه و گردل پروره بیلد بکنه
lintDebug:
stage: build
script:
- ./gradlew -Pci --console=plain :app:lintDebug -PbuildDir=lint
assembleDebug:
stage: build
script:
- ./gradlew assembleDebug
artifacts:
paths:
- app/build/outputs/
# مرحله دیباگ میاد گردل با استفاده از دستور بش ران میکنه و تست ها ران میشن
debugTests:
stage: test
script:
- ./gradlew -Pci --console=plain :app:testDebug
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment