Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
flutter-base
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-base
Compare revisions
182f2dc9b4ff8b6edae65ef18165cae06eaa4108 to 39b898ec2a6617003fc9a71d887bc7848dd4eebb
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-base
Select target project
No results found
39b898ec2a6617003fc9a71d887bc7848dd4eebb
Select Git revision
Swap
Target
docker-images/flutter/flutter-base
Select target project
docker-images/flutter/flutter-base
1 result
182f2dc9b4ff8b6edae65ef18165cae06eaa4108
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
add multi version support
· 1170fd5d
Andri Joos
authored
4 months ago
1170fd5d
Merge branch 'multi_version_image'
· 39b898ec
Andri Joos
authored
4 months ago
39b898ec
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+13
-2
13 additions, 2 deletions
.gitlab-ci.yml
.vscode/tasks.json
+17
-5
17 additions, 5 deletions
.vscode/tasks.json
with
30 additions
and
7 deletions
.gitlab-ci.yml
View file @
39b898ec
...
...
@@ -3,9 +3,20 @@ include:
ref
:
master
file
:
docker_hub.gitlab-ci.yml
build
:
.
build
_flutter_base
:
extends
:
.build_image_job_template
variables
:
BUILD_ARGS
:
FLUTTER_VERSION=${VERSION}
.build_old_flutter_base
:
extends
:
.build_old_version
variables
:
BUILD_ARGS
:
FLUTTER_VERSION=${VERSION}
"
3.24.5"
:
extends
:
.build_flutter_base
variables
:
DOCKER_BUILDX_PLATFORMS
:
linux/amd64
IMAGE_BASENAME
:
${IMAGE_PREFIX}/flutter
IMAGE_NAME
:
${IMAGE_BASENAME}:3.24.5,${IMAGE_BASENAME}:3.24,${IMAGE_BASENAME}:3
VERSION
:
3.24.5
IMAGE_NAME
:
${IMAGE_BASENAME}:${VERSION},${IMAGE_BASENAME}:3.24,${IMAGE_BASENAME}:3
This diff is collapsed.
Click to expand it.
.vscode/tasks.json
View file @
39b898ec
...
...
@@ -4,12 +4,24 @@
"version"
:
"2.0.0"
,
"tasks"
:
[
{
"label"
:
"
docker
build"
,
"label"
:
"build"
,
"command"
:
"docker"
,
"args"
:
[
"build"
,
"."
]
}
]
"--build-arg"
,
"FLUTTER_VERSION=${input:flutterVersion}"
,
"."
,
],
},
],
"inputs"
:
[
{
"id"
:
"flutterVersion"
,
"type"
:
"pickString"
,
"description"
:
"Choose flutter version"
,
"options"
:
[
"3.24.5"
,
],
},
],
}
This diff is collapsed.
Click to expand it.