mirror of
https://github.com/actions/runner-images.git
synced 2025-12-28 04:38:53 +08:00
* Create symlink for test running * Fix 1604 and 2004 templates * Fix php and haskell running * Minor fix * Fix new added tests * Fix symlink * Minor fix * Fix script permissions * Minor fix * Fix firefox and rust tests * Fix new merged tests
14 lines
690 B
Bash
14 lines
690 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: google-cloud-sdk.sh
|
|
## Desc: Installs the Google Cloud SDK
|
|
################################################################################
|
|
|
|
|
|
# Install the Google Cloud SDK
|
|
echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.cloud.google.com/apt cloud-sdk main" | sudo tee -a /etc/apt/sources.list.d/google-cloud-sdk.list
|
|
curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key --keyring /usr/share/keyrings/cloud.google.gpg add -
|
|
sudo apt-get update -y
|
|
sudo apt-get install -y google-cloud-sdk
|
|
|
|
invoke_tests "CLI.Tools" "Google Cloud SDK" |