blob: 20a8eac3c0e6323dc9eed2885803455ab078966f [file] [log] [blame]
Gary Wu9abb61c2018-09-27 10:38:50 -07001#!/bin/bash
kaihlavi4a7516b2019-08-12 15:44:26 +03002#
3# Copyright 2019 © Samsung Electronics Co., Ltd.
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
Gary Wu9abb61c2018-09-27 10:38:50 -070017
Petr Ospalý60d994c2019-09-05 16:47:48 +020018# By default all images are from remote upstream registry, this option
19# provides the chance to test locally built images
20export SDC_LOCAL_IMAGES="${SDC_LOCAL_IMAGES:-false}"
21
22# For this to take effect SDC_LOCAL_IMAGES must be enabled...
23#
24# The path to the local sdc git repo from which the local images have
25# been built - it also affects the tag used - if left empty *AND*
26# local images are used *AND* SDC_LOCAL_TAG is unset then the tag
27# will be set to: 'latest'
28#
29# BEWARE: Using local images with an incorrect git repo could lead to
30# problems...set SDC_LOCAL_GITREPO or GERRIT_BRANCH properly...
31export SDC_LOCAL_GITREPO="${SDC_LOCAL_GITREPO}"
32
33# For this to take effect SDC_LOCAL_IMAGES must be enabled...
34#
35# This will set the tag for local images - leaving this empty *AND*
36# with unset SDC_LOCAL_GITREPO the local images will fallback to the
37# tag: 'latest'
38export SDC_LOCAL_TAG="${SDC_LOCAL_TAG}"
39
kaihlavib6f2ac32019-05-21 16:38:53 +030040source ${WORKSPACE}/scripts/sdc/setup_sdc_for_sanity.sh tad