45ab3e0332
This adds a proof-of-concept of `puppeteer-firefox`. This consists of two parts: - `//experimental/juggler` - patches to apply to Firefox. - `//experimental/puppeteer-firefox` - front-end code to be merged with Puppeteer. As things become more stable, we'll gradually move it out of the experimental folder.
10 lines
434 B
Bash
Executable File
10 lines
434 B
Bash
Executable File
# auth
|
|
echo $GS_AUTH > $SOURCE/gsauth
|
|
# install gcloud sdk
|
|
curl https://dl.google.com/dl/cloudsdk/release/google-cloud-sdk.tar.gz > /tmp/google-cloud-sdk.tar.gz
|
|
mkdir -p $SOURCE/gcloud \
|
|
&& tar -C $SOURCE/gcloud -xvf /tmp/google-cloud-sdk.tar.gz \
|
|
&& CLOUDSDK_CORE_DISABLE_PROMPTS=1 $SOURCE/gcloud/google-cloud-sdk/install.sh
|
|
gcloud auth activate-service-account --key-file=$SOURCE/gsauth
|
|
gcloud config set project juggler-builds
|