We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c815b8a commit 9af9f01Copy full SHA for 9af9f01
.github/automation/build_acl.sh
@@ -1,7 +1,7 @@
1
#! /bin/bash
2
3
# *******************************************************************************
4
-# Copyright 2020-2024 Arm Limited and affiliates.
+# Copyright 2020-2025 Arm Limited and affiliates.
5
# SPDX-License-Identifier: Apache-2.0
6
#
7
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -53,6 +53,15 @@ else
53
exit 1
54
fi
55
56
+if [[ "$CMAKE_BUILD_TYPE" == "Release" ]]; then
57
+ ACL_DEBUG=0
58
+elif [[ "$CMAKE_BUILD_TYPE" == "Debug" ]]; then
59
+ ACL_DEBUG=1
60
+else
61
+ echo "Unknown build config: $CMAKE_BUILD_TYPE"
62
+ exit 1
63
+fi
64
+
65
if [[ "$ACL_ACTION" == "clone" ]]; then
66
set -x
67
git clone --branch $ACL_VERSION --depth 1 $ACL_REPO $ACL_ROOT_DIR
0 commit comments