fix CI
Some checks failed
🏗️ Build and Test JellyTau / Run Tests (push) Successful in 4m31s
Traceability Validation / Check Requirement Traces (push) Successful in 21s
🏗️ Build and Test JellyTau / Build Android APK (push) Has been cancelled

This commit is contained in:
Duncan Tourolle 2026-06-21 10:35:14 +02:00
parent 87762c03b6
commit a816c84f8c

View File

@ -103,6 +103,16 @@ jobs:
- name: Build frontend - name: Build frontend
run: bun run build run: bun run build
- name: Ensure Android SDK packages & licenses
run: |
SDKMANAGER="$ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager"
# Accept all SDK licenses (required before Gradle can auto-install components)
yes | "$SDKMANAGER" --sdk_root="$ANDROID_HOME" --licenses
# Install the build-tools / platform the Gradle build needs
yes | "$SDKMANAGER" --sdk_root="$ANDROID_HOME" \
"platforms;android-36" \
"build-tools;35.0.0"
- name: Ensure Android NDK - name: Ensure Android NDK
run: | run: |
if [ ! -d "$NDK_HOME" ]; then if [ ! -d "$NDK_HOME" ]; then