| ramonsalguer | 38bd734 | 2020-04-08 19:44:07 +0200 | [diff] [blame] | 1 | # 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 |
| 23 | export 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 |
| 27 | export ETSIUSERNAME=$(git config user.name) |
| 28 | |
| 29 | # Folder where Robot tests are stored |
| 30 | export ROBOT_DEVOPS_FOLDER="${HOME}/devops/robot-systest" |
| 31 | |
| 32 | # Folder to save alternative DUT environments (optional) |
| 33 | export ENVIRONMENTS_FOLDER=environments |
| 34 | |
| 35 | # Folder where all required packages are stored |
| ramonsalguer | 697e4c0 | 2020-06-14 23:24:06 +0200 | [diff] [blame^] | 36 | export BASE_PACKAGES_FOLDER="${BASE_FOLDER}/packages" |
| 37 | export PACKAGES_FOLDER="${BASE_PACKAGES_FOLDER}/osm-packages" |
| 38 | #export PACKAGES_FOLDER="{BASE_FOLDER}/packages" |
| 39 | #export ETSIOSM_PACKAGES_FOLDER="${PACKAGES_FOLDER}"/osm-packages |
| ramonsalguer | 38bd734 | 2020-04-08 19:44:07 +0200 | [diff] [blame] | 40 | |
| 41 | # Folder where all required images are stored (intended for future use) |
| 42 | export IMAGES_FOLDER="/vagrant/images" |
| 43 | |
| 44 | # Folder where test results should be exported |
| 45 | export ROBOT_REPORT_FOLDER="/vagrant/results" |