Skip to content

Commit 9af9f01

Browse files
committed
fix cache
Change-Id: Ifcd5326d96738e98909b6769d9b352053a2db7c2
1 parent c815b8a commit 9af9f01

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/automation/build_acl.sh

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /bin/bash
22

33
# *******************************************************************************
4-
# Copyright 2020-2024 Arm Limited and affiliates.
4+
# Copyright 2020-2025 Arm Limited and affiliates.
55
# SPDX-License-Identifier: Apache-2.0
66
#
77
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -53,6 +53,15 @@ else
5353
exit 1
5454
fi
5555

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+
5665
if [[ "$ACL_ACTION" == "clone" ]]; then
5766
set -x
5867
git clone --branch $ACL_VERSION --depth 1 $ACL_REPO $ACL_ROOT_DIR

0 commit comments

Comments
 (0)