Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
android-sdk
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Janne Mareike Koschinski
android-sdk
Commits
7a3166b0
Unverified
Commit
7a3166b0
authored
4 months ago
by
Janne Mareike Koschinski
Browse files
Options
Downloads
Patches
Plain Diff
feat: update android sdk
parent
eef7852b
Branches
main
No related tags found
No related merge requests found
Pipeline
#3022
passed
4 months ago
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+11
-2
11 additions, 2 deletions
.gitlab-ci.yml
34.Dockerfile
+1
-1
1 addition, 1 deletion
34.Dockerfile
35.Dockerfile
+28
-0
28 additions, 0 deletions
35.Dockerfile
with
40 additions
and
3 deletions
.gitlab-ci.yml
+
11
−
2
View file @
7a3166b0
build
:
build
-34
:
stage
:
build
image
:
name
:
gcr.io/kaniko-project/executor:debug
...
...
@@ -6,4 +6,13 @@ build:
script
:
-
mkdir -p /kaniko/.docker
-
echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
-
/kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile --destination $CI_REGISTRY_IMAGE:${CI_COMMIT_TAG:-$CI_COMMIT_SHORT_SHA} --destination $CI_REGISTRY_IMAGE:latest
-
/kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/34.Dockerfile --destination $CI_REGISTRY_IMAGE:34-${CI_COMMIT_TAG:-$CI_COMMIT_SHORT_SHA} --destination $CI_REGISTRY_IMAGE:34-latest
build-35
:
stage
:
build
image
:
name
:
gcr.io/kaniko-project/executor:debug
entrypoint
:
[
"
"
]
script
:
-
mkdir -p /kaniko/.docker
-
echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
-
/kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/35.Dockerfile --destination $CI_REGISTRY_IMAGE:35-${CI_COMMIT_TAG:-$CI_COMMIT_SHORT_SHA} --destination $CI_REGISTRY_IMAGE:35-latest
This diff is collapsed.
Click to expand it.
Dockerfile
→
34.
Dockerfile
+
1
−
1
View file @
7a3166b0
FROM
openjdk:8-jdk
as
builder
FROM
openjdk:8-jdk
AS
builder
# define arguments for versions to be used for platform and build tools
ARG
PLATFORM=34
...
...
This diff is collapsed.
Click to expand it.
35.Dockerfile
0 → 100644
+
28
−
0
View file @
7a3166b0
FROM
openjdk:8-jdk
AS
builder
# define arguments for versions to be used for platform and build tools
ARG
PLATFORM=35
ARG
BUILD_TOOLS=35.0.0
RUN
apt-get
--quiet
update
--yes
&&
\
apt-get
--quiet
install
--yes
wget
tar
unzip lib32stdc++6 lib32z1
RUN
wget
--quiet
--output-document
=
android-sdk.zip https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip
&&
\
unzip
-q
android-sdk.zip
-d
android-sdk-linux
&&
\
rm
android-sdk.zip
RUN
mkdir
android-sdk-linux/licenses
&&
\
printf
"8933bad161af4178b1185d1a37fbf41ea5269c55
\n
d56f5187479451eabf01fb78af6dfcb131a6481e
\n
24333f8a63b6825ea9c5514f83c2829b004d1fee"
>
android-sdk-linux/licenses/android-sdk-license
&&
\
printf
"84831b9409646a918e30573bab4c9c91346d8abd"
>
android-sdk-linux/licenses/android-sdk-preview-license
RUN
android-sdk-linux/tools/bin/sdkmanager
--update
>
/dev/null
RUN
android-sdk-linux/tools/bin/sdkmanager
\
"platforms;android-
${
PLATFORM
}
"
\
"build-tools;
${
BUILD_TOOLS
}
"
\
"extras;google;m2repository"
\
"extras;android;m2repository"
>
/dev/null
FROM
openjdk:17-jdk-bullseye
COPY
--from=builder /android-sdk-linux /android-sdk-linux
ENV
PATH=$PATH:$ANDROID_HOME/platform-tools/
ENV
ANDROID_SDK_ROOT=$PWD/android-sdk-linux
ENV
PLATFORM=$PLATFORM
ENV
BUILD_TOOLS=$BUILD_TOOLS
ENV
GRADLE_OPTS="-Dorg.gradle.daemon=False"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment