blob: bf852e88ad056a47a1a07a17493046e4619efae3 [file] [log] [blame]
ramonsalguer38bd7342020-04-08 19:44:07 +02001# Copyright 2020 Telefónica Investigación y Desarrollo S.A.U.
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#######################################################################################################
16# seedconfig.rc: COMMON BASE CONFIGURATION FOR THE ENVIRONMENT
17#######################################################################################################
18# This configuration is customized for Vagrant sandboxes. If that is your case, please do not edit.
19# This file can be used as template for creating a `seedconfig.rc`
20# for other types of environments (e.g. Docker)
21
22# Base folder for all operations
23export BASE_FOLDER=/home/vagrant
24
25# EOL account for SSH operations. Required for password-less operations with Git.
26# Comment to undefine and it will use HTTP instead
27export ETSIUSERNAME=$(git config user.name)
28
29# Folder where Robot tests are stored
30export ROBOT_DEVOPS_FOLDER="${HOME}/devops/robot-systest"
31
32# Folder to save alternative DUT environments (optional)
33export ENVIRONMENTS_FOLDER=environments
34
35# Folder where all required packages are stored
ramonsalguer697e4c02020-06-14 23:24:06 +020036export BASE_PACKAGES_FOLDER="${BASE_FOLDER}/packages"
37export PACKAGES_FOLDER="${BASE_PACKAGES_FOLDER}/osm-packages"
38#export PACKAGES_FOLDER="{BASE_FOLDER}/packages"
39#export ETSIOSM_PACKAGES_FOLDER="${PACKAGES_FOLDER}"/osm-packages
ramonsalguer38bd7342020-04-08 19:44:07 +020040
41# Folder where all required images are stored (intended for future use)
42export IMAGES_FOLDER="/vagrant/images"
43
44# Folder where test results should be exported
45export ROBOT_REPORT_FOLDER="/vagrant/results"