From 1078927bbba3718e5333824705ce49b5f0fa2b79 Mon Sep 17 00:00:00 2001 From: binaryfz Date: Tue, 1 Dec 2020 16:19:17 +0800 Subject: [PATCH 1/2] test runtime ci --- runtime_ci | 1 + 1 file changed, 1 insertion(+) create mode 100644 runtime_ci diff --git a/runtime_ci b/runtime_ci new file mode 100644 index 0000000000..f8b929410f --- /dev/null +++ b/runtime_ci @@ -0,0 +1 @@ +test runtime ci -- Gitee From e23ab41933479ea89b1c438b663ce475dd7b9781 Mon Sep 17 00:00:00 2001 From: xlnb <5643801+xlnb@user.noreply.gitee.com> Date: Mon, 4 Jan 2021 10:31:15 +0800 Subject: [PATCH 2/2] add download icu4c libs in setup_tools.sh --- tools/setup_tools.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tools/setup_tools.sh b/tools/setup_tools.sh index 8d6efbeb07..f9d1ad31af 100755 --- a/tools/setup_tools.sh +++ b/tools/setup_tools.sh @@ -75,6 +75,14 @@ if [ ! -f $MAPLE_ROOT/third_party/d8/lib/d8.jar ]; then echo Downloaded AOSP. fi +if [ ! -d $MAPLE_ROOT/third_party/icu ]; then + cd $TOOLS + git clone https://gitee.com/xlnb/icu4c.git + mkdir -p $MAPLE_ROOT/third_party/icu + cp -r icu4c/lib/ $MAPLE_ROOT/third_party/icu/ + echo Download icu4c libs +fi + # download and build andriod source if [ ! -d $ANDROID_DIR/out/target/product/generic_arm64/obj ]; then mkdir -p $ANDROID_SRCDIR -- Gitee