From 3f49adec8a7a68e8958491ed8f3c40be20127f53 Mon Sep 17 00:00:00 2001 From: Izzy Date: Fri, 14 Nov 2025 11:32:06 -0500 Subject: [PATCH] Modify bundletool workflow for native image build Added executable permission to gradlew script and removed static option from native-image build step. --- .github/workflows/bundletool-native.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bundletool-native.yml b/.github/workflows/bundletool-native.yml index e8e5b3d..13bc7ff 100644 --- a/.github/workflows/bundletool-native.yml +++ b/.github/workflows/bundletool-native.yml @@ -30,8 +30,9 @@ jobs: curl -L -o bundletool.zip https://github.com/google/bundletool/archive/refs/heads/master.zip unzip bundletool.zip mv bundletool-master bundletool-src + chmod +x bundletool-src/gradlew - - name: Build bundletool.jar + - name: Build bundletool.jar (using bundletool’s own Gradle) working-directory: bundletool-src run: | ./gradlew build -x test @@ -41,7 +42,6 @@ jobs: run: | native-image \ --no-fallback \ - --static \ -jar bundletool.jar \ bundletool