-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add gcloud to windows dev-env (#16732)
* add gcloud to windows dev-env * fix da-ghc-lib
- Loading branch information
1 parent
dd82500
commit cb87f48
Showing
3 changed files
with
51 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
"bazel", | ||
"cacert", | ||
"curl", | ||
"gcloud", | ||
"ojdkbuild11", | ||
"maven-3.6.1", | ||
"msys2", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"_taken-from": "https://github.com/ScoopInstaller/Extras/blob/104f6ffb5d55425477659927274d85f621f4b95d/bucket/gcloud.json", | ||
"_taken_from_license": "http://unlicense.org/", | ||
"version": "427.0.0", | ||
"description": "Command-line interface for Google Cloud Platform products and services.", | ||
"homepage": "https://cloud.google.com/sdk/", | ||
"license": "Proprietary", | ||
"notes": "To initialize Cloud SDK, you will need to run: 'gcloud init'", | ||
"depends": "7zip19.00-helper", | ||
"architecture": { | ||
"64bit": { | ||
"url": "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-427.0.0-windows-x86_64-bundled-python.zip#/dl.zip_", | ||
"hash": "1ac06d4f0f924b245404beca2f7a1603321ae077c0f023c652422db15d0bc9f5" | ||
}, | ||
"32bit": { | ||
"url": "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-427.0.0-windows-x86-bundled-python.zip#/dl.zip_", | ||
"hash": "2bda37924f837d86a5665724fe496283000964c110f9a2a6c0ef000dbeab7932" | ||
} | ||
}, | ||
"pre_install": [ | ||
"Invoke-ExternalCommand 7z1900-helper -ArgumentList @('x', '-bso0', \"$dir\\dl.zip_\", \"-o$dir\") | Out-Null", | ||
"Move-Item \"$dir\\google-cloud-sdk\\*\" \"$dir\\\" | Out-Null", | ||
"Remove-Item \"$dir\\google-cloud-sdk\", \"$dir\\dl.zip_\" -Force -Recurse" | ||
], | ||
"bin": [ | ||
"bin\\gcloud.cmd", | ||
"bin\\gsutil.cmd", | ||
"bin\\bq.cmd", | ||
"bin\\docker-credential-gcloud.cmd", | ||
"bin\\git-credential-gcloud.cmd" | ||
], | ||
"checkver": { | ||
"url": "https://cloud.google.com/sdk/docs/downloads-versioned-archives", | ||
"regex": "google-cloud-sdk-([\\d.]+)-windows-x86_64-bundled" | ||
}, | ||
"autoupdate": { | ||
"architecture": { | ||
"64bit": { | ||
"url": "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-$version-windows-x86_64-bundled-python.zip#/dl.zip_" | ||
}, | ||
"32bit": { | ||
"url": "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-$version-windows-x86-bundled-python.zip#/dl.zip_" | ||
} | ||
} | ||
} | ||
} |