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

Commit

Permalink
add firebase-tools (firebase cli) (#256)
Browse files Browse the repository at this point in the history
* add firebase-tools (firebase cli)

It's required for using Firebase App Distribution.
https://firebase.google.com/products/app-distribution

* add note about firebase tools to changelog
  • Loading branch information
Vrtak-CZ authored and viktorbenei committed Oct 7, 2019
1 parent 110582b commit 4ff4ba9
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
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

0 comments on commit 4ff4ba9

Please sign in to comment.