Skip to content
This repository has been archived by the owner on Mar 31, 2022. It is now read-only.

add firebase-tools (firebase cli) #256

Merged
merged 8 commits into from
Oct 7, 2019
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
## `v2019_08_11_1`

* new preinstalled packages:
* `firebase-tools-7.4.0`: https://github.com/bitrise-io/android/pull/256
* `build-tools-29.0.2`
* `build-tools-29.0.1`
https://github.com/bitrise-docker/android/pull/246
Expand Down
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,15 @@ RUN /usr/bin/gcloud config set --installation component_manager/disable_update_c
&& /usr/bin/gcloud config set --installation core/disable_usage_reporting true \
&& sed -i -- 's/\"disable_usage_reporting\": false/\"disable_usage_reporting\": true/g' $GCLOUD_SDK_CONFIG

# ------------------------------------------------------
# --- Install Firebase Tools (Firebase CLI)
# https://github.com/firebase/firebase-tools
#
# It's required for using Firebase App Distribution.
# https://firebase.google.com/products/app-distribution
#

RUN npm install -g firebase-tools

# ------------------------------------------------------
# --- Install additional packages
Expand Down
10 changes: 10 additions & 0 deletions system_report.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,16 @@ fi
echo "========================================"
echo

echo
echo "=== Firebase Tools components =========="
if [[ ! -z "$BITRISE_DOCKER_REV_NUMBER_ANDROID_NDK_LTS" ]] ; then
echo " (!) Not pre-installed on this Stack / in this image"
else
firebase --version
fi
echo "========================================"
echo

echo
echo "=== Google Cloud Network Check ========="
if [[ ! -z "$BITRISE_DOCKER_REV_NUMBER_ANDROID_NDK_LTS" ]] ; then
Expand Down