From a3d197e26d88074494951c14c756394e2f0caee3 Mon Sep 17 00:00:00 2001 From: lezhan Date: Wed, 4 Dec 2024 07:36:41 +0000 Subject: [PATCH] [github-acction] build jobs failure due to deprecated macOS-12 environment The macOS-12 environment is deprecated, consider switching to macOS-13, macOS-14 (macos-latest) or macOS-15. For more details, see https://github.com/actions/runner-images/issues/10721 In addition, removing -s option because the -s option is not supported by the realpath command in macOS 13 (Ventura) and later versions --- tests/integration/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/common.sh b/tests/integration/common.sh index 1372f114..2c010ed0 100755 --- a/tests/integration/common.sh +++ b/tests/integration/common.sh @@ -29,7 +29,7 @@ ## This file defines constants and common functions for test cases. -readonly CUR_DIR=$(dirname "$(realpath -s $0)") +readonly CUR_DIR=$(dirname "$(realpath $0)") readonly TEST_ROOT_DIR=${CUR_DIR} readonly RUNTIME_DIR=/tmp/test-ot-commissioner