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:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-06-30 00:09:23 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-06-30 00:09:23 +0300
commitab593c8ded443f7ade3540ff8dac69ee51bc74fd (patch)
tree1fb8b2e194747f135d8610cd4b77766ac458b3a7 /lib/gitlab/ci/templates
parent860efb35e24e07a1a22bcafcddb5f0409d40354c (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/ci/templates')
-rw-r--r--lib/gitlab/ci/templates/Android.latest.gitlab-ci.yml14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/gitlab/ci/templates/Android.latest.gitlab-ci.yml b/lib/gitlab/ci/templates/Android.latest.gitlab-ci.yml
index 9f0e9bcc1f2..ee52bc91ab3 100644
--- a/lib/gitlab/ci/templates/Android.latest.gitlab-ci.yml
+++ b/lib/gitlab/ci/templates/Android.latest.gitlab-ci.yml
@@ -30,24 +30,24 @@ before_script:
- apt-get --quiet update --yes
- apt-get --quiet install --yes wget tar unzip lib32stdc++6 lib32z1
- # Setup path as ANDROID_SDK_ROOT for moving/exporting the downloaded sdk into it
- - export ANDROID_SDK_ROOT="${PWD}/android-home"
+ # Setup path as ANDROID_HOME for moving/exporting the downloaded sdk into it
+ - export ANDROID_HOME="${PWD}/android-home"
# Create a new directory at specified location
- - install -d $ANDROID_SDK_ROOT
+ - install -d $ANDROID_HOME
# Here we are installing androidSDK tools from official source,
# (the key thing here is the url from where you are downloading these sdk tool for command line, so please do note this url pattern there and here as well)
# after that unzipping those tools and
# then running a series of SDK manager commands to install necessary android SDK packages that'll allow the app to build
- - wget --output-document=$ANDROID_SDK_ROOT/cmdline-tools.zip https://dl.google.com/android/repository/commandlinetools-linux-${ANDROID_SDK_TOOLS}_latest.zip
- # move to the archive at ANDROID_SDK_ROOT
- - pushd $ANDROID_SDK_ROOT
+ - wget --output-document=$ANDROID_HOME/cmdline-tools.zip https://dl.google.com/android/repository/commandlinetools-linux-${ANDROID_SDK_TOOLS}_latest.zip
+ # move to the archive at ANDROID_HOME
+ - pushd $ANDROID_HOME
- unzip -d cmdline-tools cmdline-tools.zip
- pushd cmdline-tools
# since commandline tools version 7583922 the root folder is named "cmdline-tools" so we rename it if necessary
- mv cmdline-tools tools || true
- popd
- popd
- - export PATH=$PATH:${ANDROID_SDK_ROOT}/cmdline-tools/tools/bin/
+ - export PATH=$PATH:${ANDROID_HOME}/cmdline-tools/tools/bin/
# Nothing fancy here, just checking sdkManager version
- sdkmanager --version