Skip to content

Commit

Permalink
[github-acction] build jobs failure due to deprecated macOS-12 enviro…
Browse files Browse the repository at this point in the history
…nment

The macOS-12 environment is deprecated, consider switching to macOS-13, macOS-14 (macos-latest) or macOS-15.

For more details, see actions/runner-images#10721

In addition, removing -s option because the -s option is not supported by the realpath command in macOS 13 (Ventura) and later versions
  • Loading branch information
ZhangLe2016 committed Dec 4, 2024
1 parent a3d197e commit fa546cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion android/build-commissioner-libs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# POSSIBILITY OF SUCH DAMAGE.
#

readonly CUR_DIR="$(dirname "$(realpath -s "$0")")"
readonly CUR_DIR="$(dirname "$(realpath "$0")")"

set -e

Expand Down
2 changes: 1 addition & 1 deletion script/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ else
exit 1
fi

readonly CUR_DIR="$(dirname "$(realpath -s "$0")")"
readonly CUR_DIR="$(dirname "$(realpath "$0")")"

cd "${CUR_DIR}/.."
if [ "${WITH_CCM}" = "1" ]; then
Expand Down

0 comments on commit fa546cc

Please sign in to comment.