lts: new downloads area for LTS v2.10
Adding new shell script to use new
"https://downloads.trustedfirmware.org/tf-a-lts-v2.10";
downloads area for LTS v2.10 branch.
Signed-off-by: Lauren Wehrmeister <lauren.wehrmeister@arm.com>
Change-Id: I0280c4f6d286b4bf0fb13490e7234004bdd32832
diff --git a/openci-lts-v2.10-env.sh b/openci-lts-v2.10-env.sh
new file mode 100644
index 0000000..9353726
--- /dev/null
+++ b/openci-lts-v2.10-env.sh
@@ -0,0 +1,14 @@
+#!/usr/bin/env bash
+#
+# Copyright (c) 2024, Arm Limited. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+
+#
+# Environmental settings for the OpenCI LTS v2.10 infrastructure.
+#
+
+nfs_volume="${WORKSPACE:?}/nfs"
+jenkins_url="http://ci.trustedfirmware.org"
+tfa_downloads="https://downloads.trustedfirmware.org/tf-a-lts-v2.10"
diff --git a/utils.sh b/utils.sh
index e310d7b..0c3c143 100644
--- a/utils.sh
+++ b/utils.sh
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
#
-# Copyright (c) 2019-2023, Arm Limited. All rights reserved.
+# Copyright (c) 2019-2024, Arm Limited. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
@@ -28,6 +28,8 @@
elif echo "$JENKINS_URL" | grep -q "ci.trustedfirmware.org"; then
if echo "$TF_GERRIT_BRANCH" | grep -q "lts-v2.8"; then
source "$ci_root/openci-lts-v2.8-env.sh"
+ elif echo "$TF_GERRIT_BRANCH" | grep -q "lts-v2.10"; then
+ source "$ci_root/openci-lts-v2.10-env.sh"
else
source "$ci_root/openci-env.sh"
fi