Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Lenny <jlenny@gitlab.com>2019-02-20 12:56:24 +0300
committerJason Lenny <jlenny@gitlab.com>2019-02-27 15:24:29 +0300
commitfbbca3cd53fd915e7d0bd3b5ddb08fc29eef33ac (patch)
treee3905b656fa5930fe0bed0bcc9c92f251fceab02 /lib/gitlab
parent04f8be34bd7a9eb74ab40ebe6a613f9b3584f75e (diff)
Delete Android.gitlab-ci.yml since we are replacing it with full template
Diffstat (limited to 'lib/gitlab')
-rw-r--r--lib/gitlab/ci/templates/Android.gitlab-ci.yml47
1 files changed, 0 insertions, 47 deletions
diff --git a/lib/gitlab/ci/templates/Android.gitlab-ci.yml b/lib/gitlab/ci/templates/Android.gitlab-ci.yml
deleted file mode 100644
index c169e3f7686..00000000000
--- a/lib/gitlab/ci/templates/Android.gitlab-ci.yml
+++ /dev/null
@@ -1,47 +0,0 @@
-# Read more about this script on this blog post https://about.gitlab.com/2018/10/24/setting-up-gitlab-ci-for-android-projects/, by Jason Lenny
-# If you are interested in using Android with FastLane for publishing take a look at the Android-Fastlane template.
-
-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