blob: 30f1c0f24f11ae9bb1528fed8ff674d889584fc6 [file] [log] [blame]
Ashish Singhac02a0e2020-07-08 13:34:12 +05301#!/bin/bash
2#
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#
17
18# It can enable HTTPS for SDC component
19export SDC_TEST_HTTPS="${SDC_TEST_HTTPS:-false}"
20
21# By default all images are from remote upstream registry, this option
22# provides the chance to test locally built images
23export SDC_LOCAL_IMAGES="${SDC_LOCAL_IMAGES:-false}"
24
25export WORKFLOW_LOCAL_IMAGES="${WORKFLOW_LOCAL_IMAGES:-false}"
26
27# For this to take effect SDC_LOCAL_IMAGES must be enabled...
28#
29# The path to the local sdc git repo from which the local images have
30# been built - it also affects the tag used - if left empty *AND*
31# local images are used *AND* SDC_LOCAL_TAG is unset then the tag
32# will be set to: 'latest'
33#
34# BEWARE: Using local images with an incorrect git repo could lead to
35# problems...set SDC_LOCAL_GITREPO or GERRIT_BRANCH properly...
36export SDC_LOCAL_GITREPO="${SDC_LOCAL_GITREPO}"
37
38# For this to take effect SDC_LOCAL_IMAGES must be enabled...
39#
40# This will set the tag for local images - leaving this empty *AND*
41# with unset SDC_LOCAL_GITREPO the local images will fallback to the
42# tag: 'latest'
43export SDC_LOCAL_TAG="${SDC_LOCAL_TAG}"
44
45
46export WORKFLOW_LOCAL_GITREPO="${WORKFLOW_LOCAL_GITREPO}"
47
48
49
50source ${WORKSPACE}/scripts/sdc-workflow-d/sdc_workflow_d.sh