From eb75db970ef81cf8576c427c28982a492dc0f61a Mon Sep 17 00:00:00 2001 From: "jijoong.moon" Date: Thu, 4 Jul 2024 14:23:30 +0900 Subject: [PATCH] [ CI ] modify android build test in action This pr fixs the duplicated build in android build action. **Self evaluation:** 1. Build test: [X]Passed [ ]Failed [ ]Skipped 2. Run test: [X]Passed [ ]Failed [ ]Skipped Signed-off-by: jijoong.moon --- .github/workflows/android.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index a5fad76ee2..be8c51bbd2 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -36,21 +36,12 @@ jobs: echo "::group::Run package_android.sh" ./tools/package_android.sh echo "::endgroup::" - echo "::group::Meson build" - meson build -Dplatform=android - ninja -C build - echo "::endgroup::" - echo "::group::NDK build" - pushd build/jni - ndk-build NDK_PROJECT_PATH=./ APP_BUILD_SCRIPT=./Android.mk NDK_APPLICATION_MK=./Application.mk - popd - echo "::endgroup::" - name: Install built binaries for application build if: env.rebuild == '1' run: | echo "Installing build bianries for application build" mkdir -p libs/arm64-v8a - cp -R build/jni/libs/arm64-v8a/* libs/arm64-v8a + cp -R builddir/android_build_result/lib/arm64-v8a/* libs/arm64-v8a - name: Android NNTrainer Application Build if: env.rebuild == '1' run: |