blob: 1e6a554e8667f956e1a1bf717cfa69f6db1daa66 [file] [log] [blame]
Chris Kay7c542f22022-11-18 11:42:59 +00001#!/usr/bin/env bash
2#
3# Copyright (c) 2022, Arm Limited. All rights reserved.
4#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7
8#
9# Environmental settings for the OpenCI infrastructure.
10#
11
12nfs_volume="${WORKSPACE:?}/nfs"
Arthur She0d997d02025-02-03 21:39:57 -080013jenkins_url="${JENKINS_PUBLIC_URL}"
Saheer Babuee6788f2025-02-10 17:49:12 +000014tfa_downloads="${DOWNLOAD_SERVER_URL}/tf-a"
Arthur Sheeb0f6102023-07-08 09:54:57 -070015ci_env="openci"
Arthur She5753b6d2025-01-19 21:30:39 -080016
17tfa_branch=${TF_GERRIT_BRANCH##*/}
18if echo $tfa_branch | grep -q "^lts-v"; then
19 # LTS branch, change the download space to the respective one
Saheer Babuee6788f2025-02-10 17:49:12 +000020 tfa_downloads="${DOWNLOAD_SERVER_URL}/tf-a-$tfa_branch"
Arthur She5753b6d2025-01-19 21:30:39 -080021fi