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
Commits
39b898ec
Commit
39b898ec
authored
4 months ago
by
Andri Joos
Browse files
Options
Downloads
Plain Diff
Merge branch 'multi_version_image'
parents
182f2dc9
1170fd5d
No related branches found
Branches containing commit
No related tags found
Pipeline
#7616
passed with stage
in 14 minutes and 51 seconds
Changes
2
Pipelines
1
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
+
13
−
2
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
+
17
−
5
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.
Preview
0%
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