mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-05 18:30:27 -07:00
Fixing some of the existing failing tests in the CI process. Specifically: - gcp_appengine_firewall_rule: modified validation to support the default firewall rule - gcp_cloudfunctions_cloud_function: bootstrapping the required GS bucket and files for creating a valid cloud function. - Slight update to the functionality, which now requires a runtime specified for new functions. -
7 lines
No EOL
201 B
Bash
Executable file
7 lines
No EOL
201 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Build the cloud function zip file,
|
|
# in the desired cloud function source format.
|
|
if [ -f ../cloud-function.zip ]; then
|
|
rm ../cloud-function.zip
|
|
fi
|
|
zip ../cloud-function.zip * |