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
9b6fd7cb
Unverified
Commit
9b6fd7cb
authored
Mar 31, 2020
by
Kate Lovett
Committed by
GitHub
Mar 31, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Separate PR (#53619)
parent
7bf74c34
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
19 deletions
+0
-19
Dockerfile
dev/ci/docker_linux/Dockerfile
+0
-4
patch_firebase.sh
dev/ci/docker_linux/patch_firebase.sh
+0
-15
No files found.
dev/ci/docker_linux/Dockerfile
View file @
9b6fd7cb
...
...
@@ -96,10 +96,6 @@ RUN dpkg-query -L nodejs
# Install Firebase
# This is why we need nodejs installed.
RUN
/usr/bin/npm
--verbose
install
-g
firebase-tools
# TODO(dnfield): Remove this once Firebase has a fix upstream for
# https://github.com/flutter/flutter/issues/34435
COPY
ci/docker_linux/patch_firebase.sh /root/patch_firebase.sh
RUN
/root/patch_firebase.sh
# Install golang more recent than in repo (necessary for dashing to build)
RUN
curl
'https://dl.google.com/go/go1.13.3.linux-amd64.tar.gz'
|
tar
xvz
...
...
dev/ci/docker_linux/patch_firebase.sh
deleted
100755 → 0
View file @
7bf74c34
#!/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.
FIREBASE_CMD_LOC
=
$(
which firebase
)
NODE_DIR
=
$(
dirname
$(
dirname
$FIREBASE_CMD_LOC
))
echo
"Node directory is located at
$NODE_DIR
"
UPLOADER_FILE
=
"
$NODE_DIR
""/lib/node_modules/firebase-tools/lib/deploy/hosting/uploader.js"
echo
"File to modify is
$UPLOADER_FILE
"
REPLACE
=
's#populateBatchSize || 1000;#populateBatchSize || 100;#'
echo
"Going to replace with
$REPLACE
"
sed
-i
"
$REPLACE
"
"
$UPLOADER_FILE
"
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