Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
f8a82feb
Unverified
Commit
f8a82feb
authored
Jul 20, 2020
by
Christopher Fujino
Committed by
GitHub
Jul 20, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add new docker_attach.sh script and update README (#61363)
parent
54c94417
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
5 deletions
+20
-5
README.md
dev/ci/docker_linux/README.md
+8
-5
docker_attach.sh
dev/ci/docker_linux/docker_attach.sh
+12
-0
No files found.
dev/ci/docker_linux/README.md
View file @
f8a82feb
...
...
@@ -5,8 +5,11 @@ In order to run the scripts, you have to setup `docker` and `gcloud`. Please
refer to the
[
internal flutter team doc
](
go/flutter-team
)
for how to setup in a
Google internal environment.
After setup,
*
edit
`Dockerfile`
to change how the container image is built.
*
run
`./docker_build.sh`
to build the container image.
*
run
`./docker_push.sh`
to push the image to google cloud registry. This will
affect our CI tests.
To debug the image locally:
*
(Optional) edit the
`Dockerfile`
to change how the container image is built.
*
Run
`./docker_build.sh`
to build the container image (
`sudo`
permission is
required)
*
Run
`./docker_attach.sh`
to start a container from the image and attach to its
internal bash shell. From here, you can invoke shell commands from the
`.cirrus.yml`
(you will have to manually run any
`setup`
steps; e.g. the
container will not have the Flutter repo cloned yet).
dev/ci/docker_linux/docker_attach.sh
0 → 100755
View file @
f8a82feb
#!/usr/bin/env bash
# Copyright 2014 The Flutter Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
TAG
=
"
${
CIRRUS_TAG
:-
latest
}
"
# Starts an interactive docker container with a bash shell running in it, and
# attaches the user's shell to it.
sudo
docker run
--interactive
--tty
\
"gcr.io/flutter-cirrus/build-flutter-image:
$TAG
"
\
/bin/bash
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment