Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
flutter-android
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
docker images
flutter
flutter-android
Compare revisions
bbfd5b90607eafddb2bce5a6737a0d3e170c0319 to e56d2326c680a612a9046ff8e05735a5b5b69fa2
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
docker-images/flutter/flutter-android
Select target project
No results found
e56d2326c680a612a9046ff8e05735a5b5b69fa2
Select Git revision
Branches
master
Swap
Target
docker-images/flutter/flutter-android
Select target project
docker-images/flutter/flutter-android
1 result
bbfd5b90607eafddb2bce5a6737a0d3e170c0319
Select Git revision
Branches
master
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (4)
disable test project creation
· 9dc77093
Andri Joos
authored
3 months ago
9dc77093
build with buildx
· 8b26db2b
Andri Joos
authored
3 months ago
8b26db2b
add 3.27.0 version
· 59f52035
Andri Joos
authored
3 months ago
59f52035
add 3.27.1 version
· e56d2326
Andri Joos
authored
3 months ago
e56d2326
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+18
-2
18 additions, 2 deletions
.gitlab-ci.yml
.vscode/tasks.json
+6
-1
6 additions, 1 deletion
.vscode/tasks.json
Dockerfile
+4
-4
4 additions, 4 deletions
Dockerfile
with
28 additions
and
7 deletions
.gitlab-ci.yml
View file @
e56d2326
...
...
@@ -6,16 +6,32 @@ include:
variables
:
TAG_SUFFIX
:
android
IMAGE_BASENAME
:
${IMAGE_PREFIX}/flutter
DOCKER_BUILDX_PLATFORMS
:
linux/amd64
.build_flutter_android
:
variables
:
BUILD_ARGS
:
FLUTTER_VERSION=${VERSION}
"
3.27.1"
:
extends
:
-
.build_flutter_android
-
.build_image_job_template
variables
:
VERSION
:
3.27.1
IMAGE_NAME
:
${IMAGE_BASENAME}:${VERSION}-${TAG_SUFFIX},${IMAGE_BASENAME}:3.27-${TAG_SUFFIX},${IMAGE_BASENAME}:3-${TAG_SUFFIX}
"
3.27.0"
:
extends
:
-
.build_flutter_android
-
.build_image_job_template
variables
:
VERSION
:
3.27.0
IMAGE_NAME
:
${IMAGE_BASENAME}:${VERSION}-${TAG_SUFFIX}
"
3.24.5"
:
extends
:
-
.build_flutter_android
-
.build_image_job_template
variables
:
DOCKER_BUILDX_PLATFORMS
:
linux/amd64
VERSION
:
3.24.5
IMAGE_NAME
:
${IMAGE_BASENAME}:${VERSION}-${TAG_SUFFIX},${IMAGE_BASENAME}:3.24-${TAG_SUFFIX}
,${IMAGE_BASENAME}:3-${TAG_SUFFIX}
IMAGE_NAME
:
${IMAGE_BASENAME}:${VERSION}-${TAG_SUFFIX},${IMAGE_BASENAME}:3.24-${TAG_SUFFIX}
This diff is collapsed.
Click to expand it.
.vscode/tasks.json
View file @
e56d2326
...
...
@@ -4,10 +4,13 @@
"version"
:
"2.0.0"
,
"tasks"
:
[
{
"label"
:
"build"
,
"label"
:
"
buildx
build"
,
"command"
:
"docker"
,
"args"
:
[
"buildx"
,
"build"
,
"--platform"
,
"linux/amd64"
,
"--build-arg"
,
"FLUTTER_VERSION=${input:flutterVersion}"
,
"."
,
...
...
@@ -20,6 +23,8 @@
"type"
:
"pickString"
,
"description"
:
"Choose flutter version"
,
"options"
:
[
"3.27.1"
,
"3.27.0"
,
"3.24.5"
,
],
},
...
...
This diff is collapsed.
Click to expand it.
Dockerfile
View file @
e56d2326
...
...
@@ -53,8 +53,8 @@ RUN yes "y" | flutter doctor --android-licenses \
&&
yes
| sdkmanager
--sdk_root
=
${
ANDROID_HOME
}
--licenses
# Build demo project/pipeline
RUN
flutter create
--project-name
warmup
-t
app warmup
#
RUN flutter create --project-name warmup -t app warmup
RUN
cd
warmup
\
&&
flutter pub get
\
&&
flutter build appbundle
--release
--target-platform
android-arm,android-arm64,android-x64
#
RUN cd warmup \
#
&& flutter pub get \
#
&& flutter build appbundle --release --target-platform android-arm,android-arm64,android-x64
This diff is collapsed.
Click to expand it.