Compare commits
9 Commits
test2
...
ci-upload-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0ae7ac86d9 | ||
|
|
61b8c3d18f | ||
|
|
87c77dc1fa | ||
|
|
e53a33c7b5 | ||
|
|
4bbcead398 | ||
|
|
dcdf69d02a | ||
|
|
aae81c202e | ||
|
|
a2c34d5e3b | ||
|
|
94418c9edb |
@@ -1,7 +1,7 @@
|
||||
name: Android build
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
contents: write
|
||||
releases: write
|
||||
|
||||
on:
|
||||
@@ -37,7 +37,9 @@ jobs:
|
||||
export ANDROID_HOME="$ANDROID_SDK_ROOT"
|
||||
mkdir -p "$ANDROID_SDK_ROOT/cmdline-tools"
|
||||
if [ ! -x "$ANDROID_SDK_ROOT/cmdline-tools/latest/bin/sdkmanager" ]; then
|
||||
curl -fsSL -o /tmp/commandlinetools.zip https://dl.google.com/android/repository/commandlinetools-linux-12266719_latest.zip
|
||||
tools_url="$(curl -fsSL https://developer.android.com/studio | grep -o 'https://dl.google.com/android/repository/commandlinetools-linux-[0-9][0-9]*_latest.zip' | head -n 1)"
|
||||
test -n "$tools_url"
|
||||
curl -fsSL -o /tmp/commandlinetools.zip "$tools_url"
|
||||
rm -rf "$ANDROID_SDK_ROOT/cmdline-tools/latest" "$ANDROID_SDK_ROOT/cmdline-tools/cmdline-tools"
|
||||
unzip -q /tmp/commandlinetools.zip -d "$ANDROID_SDK_ROOT/cmdline-tools"
|
||||
mv "$ANDROID_SDK_ROOT/cmdline-tools/cmdline-tools" "$ANDROID_SDK_ROOT/cmdline-tools/latest"
|
||||
@@ -48,8 +50,42 @@ jobs:
|
||||
set -o pipefail
|
||||
sdkmanager \
|
||||
"platform-tools" \
|
||||
"platforms;android-35" \
|
||||
"build-tools;35.0.0"
|
||||
"platforms;android-36" \
|
||||
"build-tools;36.0.0"
|
||||
|
||||
- name: Prepare optional release signing
|
||||
if: github.event_name == 'release'
|
||||
continue-on-error: true
|
||||
env:
|
||||
ANDROID_KEYSTORE_BASE64: ${{ secrets.ANDROID_KEYSTORE_BASE64 }}
|
||||
ANDROID_KEYSTORE_PASSWORD: ${{ secrets.ANDROID_KEYSTORE_PASSWORD }}
|
||||
ANDROID_KEY_ALIAS: ${{ secrets.ANDROID_KEY_ALIAS }}
|
||||
ANDROID_KEY_PASSWORD: ${{ secrets.ANDROID_KEY_PASSWORD }}
|
||||
shell: bash
|
||||
run: |
|
||||
set -euo pipefail
|
||||
missing=()
|
||||
for key in ANDROID_KEYSTORE_BASE64 ANDROID_KEYSTORE_PASSWORD ANDROID_KEY_ALIAS ANDROID_KEY_PASSWORD; do
|
||||
if [ -z "${!key:-}" ]; then
|
||||
missing+=("$key")
|
||||
fi
|
||||
done
|
||||
|
||||
if [ ${#missing[@]} -gt 0 ]; then
|
||||
printf -v missing_csv '%s, ' "${missing[@]}"
|
||||
missing_csv="${missing_csv%, }"
|
||||
echo "::error::Release signing secrets missing: ${missing_csv}. Continuing with unsigned/default-signed release AAB."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
mkdir -p .ci-secrets
|
||||
printf '%s' "$ANDROID_KEYSTORE_BASE64" | base64 -d > .ci-secrets/release-keystore.jks
|
||||
cat > keystore.properties <<EOF
|
||||
storeFile=.ci-secrets/release-keystore.jks
|
||||
storePassword=$ANDROID_KEYSTORE_PASSWORD
|
||||
keyAlias=$ANDROID_KEY_ALIAS
|
||||
keyPassword=$ANDROID_KEY_PASSWORD
|
||||
EOF
|
||||
|
||||
- name: Make Gradle wrapper executable
|
||||
run: chmod +x gradlew
|
||||
@@ -60,6 +96,29 @@ jobs:
|
||||
set -euxo pipefail
|
||||
printf 'sdk.dir=%s/.android/sdk\n' "$HOME" > local.properties
|
||||
|
||||
- name: Prepare CI build metadata
|
||||
id: build_meta
|
||||
shell: bash
|
||||
run: |
|
||||
set -euxo pipefail
|
||||
timestamp_utc="$(date -u +%Y%m%d-%H%M%S)"
|
||||
version_code="$(date -u +%s)"
|
||||
project_name="$(basename "$GITHUB_REPOSITORY")"
|
||||
python3 - "$version_code" <<'PY'
|
||||
from pathlib import Path
|
||||
import re, sys
|
||||
path = Path('app/build.gradle.kts')
|
||||
text = path.read_text(encoding='utf-8')
|
||||
new_text, count = re.subn(r'(\bversionCode\s*=\s*)\d+', rf'\g<1>{sys.argv[1]}', text, count=1)
|
||||
if count != 1:
|
||||
raise SystemExit('versionCode not found in app/build.gradle.kts')
|
||||
path.write_text(new_text, encoding='utf-8')
|
||||
PY
|
||||
echo "Using CI versionCode: $version_code"
|
||||
echo "project_name=$project_name" >> "$GITHUB_OUTPUT"
|
||||
echo "timestamp_utc=$timestamp_utc" >> "$GITHUB_OUTPUT"
|
||||
echo "version_code=$version_code" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Build debug APK
|
||||
if: github.event_name != 'release'
|
||||
shell: bash
|
||||
@@ -78,6 +137,18 @@ jobs:
|
||||
export ANDROID_HOME="$ANDROID_SDK_ROOT"
|
||||
./gradlew --no-daemon bundleRelease
|
||||
|
||||
- name: Rename release AAB for upload
|
||||
if: github.event_name == 'release'
|
||||
id: release_aab
|
||||
shell: bash
|
||||
run: |
|
||||
set -euxo pipefail
|
||||
aab="$(find app/build/outputs/bundle/release -name '*.aab' | head -n 1)"
|
||||
renamed="app/build/outputs/bundle/release/${{ steps.build_meta.outputs.project_name }}-${{ steps.build_meta.outputs.timestamp_utc }}-release.aab"
|
||||
mv -f "$aab" "$renamed"
|
||||
echo "Renamed release AAB to $(basename "$renamed")"
|
||||
echo "path=$renamed" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Upload debug APK
|
||||
if: github.event_name != 'release'
|
||||
uses: actions/upload-artifact@v3
|
||||
@@ -90,13 +161,19 @@ jobs:
|
||||
if: github.event_name == 'release'
|
||||
env:
|
||||
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
|
||||
GITHUB_TOKEN: ${{ github.token }}
|
||||
shell: bash
|
||||
run: |
|
||||
set -euxo pipefail
|
||||
token="${GITHUB_TOKEN:-${GITEA_TOKEN:-}}"
|
||||
if [ -z "$token" ]; then
|
||||
echo "::error::No release upload token is available from secrets.GITEA_TOKEN or github.token"
|
||||
exit 1
|
||||
fi
|
||||
release_id="$(python3 -c 'import json, os; print(json.load(open(os.environ["GITHUB_EVENT_PATH"], encoding="utf-8"))["release"]["id"])')"
|
||||
aab="$(find app/build/outputs/bundle/release -name '*.aab' | head -n 1)"
|
||||
aab="${{ steps.release_aab.outputs.path }}"
|
||||
curl --fail-with-body \
|
||||
--request POST \
|
||||
--header "Authorization: token ${GITEA_TOKEN}" \
|
||||
--header "Authorization: token ${token}" \
|
||||
--form "attachment=@${aab}" \
|
||||
"${GITHUB_SERVER_URL}/api/v1/repos/${GITHUB_REPOSITORY}/releases/${release_id}/assets?name=$(basename "$aab")"
|
||||
|
||||
@@ -3,8 +3,8 @@ set -Eeuo pipefail
|
||||
|
||||
APP_NAME="e-SUN"
|
||||
MODULE="app"
|
||||
API_LEVEL="35"
|
||||
BUILD_TOOLS_VERSION="35.0.0"
|
||||
API_LEVEL="36"
|
||||
BUILD_TOOLS_VERSION="36.0.0"
|
||||
DIST_DIR="dist"
|
||||
COMMIT_MSG_FILE="commit-message.txt"
|
||||
|
||||
|
||||
@@ -1,17 +1,31 @@
|
||||
import java.util.Properties
|
||||
|
||||
plugins {
|
||||
id("com.android.application")
|
||||
id("org.jetbrains.kotlin.android")
|
||||
id("org.jetbrains.kotlin.plugin.compose")
|
||||
}
|
||||
|
||||
val keystorePropertiesFile = rootProject.file("keystore.properties")
|
||||
val keystoreProperties = Properties()
|
||||
if (keystorePropertiesFile.exists()) {
|
||||
keystorePropertiesFile.inputStream().use { keystoreProperties.load(it) }
|
||||
}
|
||||
val hasReleaseSigning = listOf(
|
||||
"storeFile",
|
||||
"storePassword",
|
||||
"keyAlias",
|
||||
"keyPassword",
|
||||
).all { !keystoreProperties.getProperty(it).isNullOrBlank() }
|
||||
|
||||
android {
|
||||
namespace = "solutions.tretter.esunandroid"
|
||||
compileSdk = 35
|
||||
compileSdk = 36
|
||||
|
||||
defaultConfig {
|
||||
applicationId = "solutions.tretter.esunandroid"
|
||||
minSdk = 26
|
||||
targetSdk = 35
|
||||
targetSdk = 36
|
||||
versionCode = 19
|
||||
versionName = "19"
|
||||
|
||||
@@ -19,6 +33,17 @@ android {
|
||||
vectorDrawables.useSupportLibrary = true
|
||||
}
|
||||
|
||||
signingConfigs {
|
||||
if (hasReleaseSigning) {
|
||||
create("release") {
|
||||
storeFile = file(keystoreProperties.getProperty("storeFile"))
|
||||
storePassword = keystoreProperties.getProperty("storePassword")
|
||||
keyAlias = keystoreProperties.getProperty("keyAlias")
|
||||
keyPassword = keystoreProperties.getProperty("keyPassword")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
isMinifyEnabled = false
|
||||
@@ -26,6 +51,9 @@ android {
|
||||
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||||
"proguard-rules.pro"
|
||||
)
|
||||
if (hasReleaseSigning) {
|
||||
signingConfig = signingConfigs.getByName("release")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
plugins {
|
||||
id("com.android.application") version "8.7.2" apply false
|
||||
id("com.android.application") version "8.10.0" apply false
|
||||
id("org.jetbrains.kotlin.android") version "2.0.21" apply false
|
||||
// Required for Kotlin 2.0+ when Compose is enabled
|
||||
id("org.jetbrains.kotlin.plugin.compose") version "2.0.21" apply false
|
||||
|
||||
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,5 +1,5 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
||||
Reference in New Issue
Block a user