Files
android-ci-demo/gradlew
T
amos 28a92d1831
Android Build / build (push) Has been cancelled
Android Build / release (push) Has been cancelled
Initial Android CI project with Gitea Actions
2026-06-01 19:46:33 +08:00

14 lines
304 B
Bash
Executable File

#!/bin/bash
# Gradle Wrapper Script (Simplified for CI)
# In production, use: gradle wrapper
GRADLE_VERSION="8.2"
GRADLE_HOME="${GRADLE_HOME:-/opt/gradle}"
if [ ! -d "$GRADLE_HOME" ]; then
echo "Gradle not found, using system gradle..."
exec gradle "$@"
fi
exec "$GRADLE_HOME/bin/gradle" "$@"