mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

This switches docs and gallery build and deployment to use Cirrus CI instead of Travis, reapplying the changes from #19925, but updating the Firebase tokens for upload, and refining docs.sh some to limit retries to five times (instead of indefinitely).
9 lines
228 B
Bash
Executable File
9 lines
228 B
Bash
Executable File
#!/bin/bash
|
|
|
|
TAG="${CIRRUS_TAG:-latest}"
|
|
|
|
# pull to make sure we are not rebuilding for nothing
|
|
docker pull "gcr.io/flutter-cirrus/build-flutter-image:$TAG"
|
|
|
|
docker build --tag "gcr.io/flutter-cirrus/build-flutter-image:$TAG" .
|