blob: 24da27b29dd8e92881e609fb907a6a7b1e660d35 [file] [log] [blame]
Chris Kay73a91b02022-12-19 16:56:51 +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 staging infrastructure.
10#
11
12nfs_volume="${WORKSPACE:?}/nfs"
13jenkins_url="http://ci.staging.trustedfirmware.org"
14tfa_downloads="https://downloads.trustedfirmware.org/tf-a"
Arthur Sheeb0f6102023-07-08 09:54:57 -070015ci_env="openci_staging"
Arthur She2c9ca722025-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
20 tfa_downloads="https://downloads.trustedfirmware.org/tf-a-$tfa_branch"
21fi