blob: 383b6ec89fbce0160742f39100e735a082317313 [file] [log] [blame]
Tres Seaver000d0a02020-10-06 15:47:28 -04001# 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.
18required_envvars+=(
19 "STAGING_BUCKET"
20 "V2_STAGING_BUCKET"
21)
22
23# Add env vars which are passed down into the container here.
24pass_down_envvars+=(
25 "STAGING_BUCKET"
26 "V2_STAGING_BUCKET"
Yoshi Automation Bot84cfb972021-01-15 11:07:01 -080027 "NOX_SESSION"
Tres Seaver000d0a02020-10-06 15:47:28 -040028)
29
30# Prevent unintentional override on the default image.
31if [[ "${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
35fi
36
37# Define the default value if it makes sense.
38if [[ -z "${TRAMPOLINE_IMAGE_UPLOAD:-}" ]]; then
39 TRAMPOLINE_IMAGE_UPLOAD=""
40fi
41
42if [[ -z "${TRAMPOLINE_IMAGE:-}" ]]; then
43 TRAMPOLINE_IMAGE=""
44fi
45
46if [[ -z "${TRAMPOLINE_DOCKERFILE:-}" ]]; then
47 TRAMPOLINE_DOCKERFILE=""
48fi
49
50if [[ -z "${TRAMPOLINE_BUILD_FILE:-}" ]]; then
51 TRAMPOLINE_BUILD_FILE=""
52fi