Tres Seaver | 000d0a0 | 2020-10-06 15:47:28 -0400 | [diff] [blame] | 1 | # Copyright 2020 Google LLC |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | # Template for .trampolinerc |
| 16 | |
| 17 | # Add required env vars here. |
| 18 | required_envvars+=( |
| 19 | "STAGING_BUCKET" |
| 20 | "V2_STAGING_BUCKET" |
| 21 | ) |
| 22 | |
| 23 | # Add env vars which are passed down into the container here. |
| 24 | pass_down_envvars+=( |
| 25 | "STAGING_BUCKET" |
| 26 | "V2_STAGING_BUCKET" |
Yoshi Automation Bot | 84cfb97 | 2021-01-15 11:07:01 -0800 | [diff] [blame] | 27 | "NOX_SESSION" |
Tres Seaver | 000d0a0 | 2020-10-06 15:47:28 -0400 | [diff] [blame] | 28 | ) |
| 29 | |
| 30 | # Prevent unintentional override on the default image. |
| 31 | if [[ "${TRAMPOLINE_IMAGE_UPLOAD:-false}" == "true" ]] && \ |
| 32 | [[ -z "${TRAMPOLINE_IMAGE:-}" ]]; then |
| 33 | echo "Please set TRAMPOLINE_IMAGE if you want to upload the Docker image." |
| 34 | exit 1 |
| 35 | fi |
| 36 | |
| 37 | # Define the default value if it makes sense. |
| 38 | if [[ -z "${TRAMPOLINE_IMAGE_UPLOAD:-}" ]]; then |
| 39 | TRAMPOLINE_IMAGE_UPLOAD="" |
| 40 | fi |
| 41 | |
| 42 | if [[ -z "${TRAMPOLINE_IMAGE:-}" ]]; then |
| 43 | TRAMPOLINE_IMAGE="" |
| 44 | fi |
| 45 | |
| 46 | if [[ -z "${TRAMPOLINE_DOCKERFILE:-}" ]]; then |
| 47 | TRAMPOLINE_DOCKERFILE="" |
| 48 | fi |
| 49 | |
| 50 | if [[ -z "${TRAMPOLINE_BUILD_FILE:-}" ]]; then |
| 51 | TRAMPOLINE_BUILD_FILE="" |
| 52 | fi |