mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2025-01-01 05:47:10 +01:00
Test nightly build CI
This commit is contained in:
parent
053c9e73b0
commit
9c6f946602
69
.woodpecker/nightly.yaml
Normal file
69
.woodpecker/nightly.yaml
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
steps:
|
||||||
|
build:
|
||||||
|
image: alvrme/alpine-android:android-33-jdk11
|
||||||
|
commands:
|
||||||
|
- ./gradlew :app:assembleNightly
|
||||||
|
sign:
|
||||||
|
image: alvrme/alpine-android:android-33-jdk11
|
||||||
|
commands:
|
||||||
|
- ./scripts/apk-sign.sh eu.toldi.infinityforlemmy.nightly.apk app/build/outputs/apk/nightly/eu.toldi.infinityforlemmy.nightly.apk.apk
|
||||||
|
secrets: [ APK_KS_PASS, APK_KS, APK_KS_ALIAS ]
|
||||||
|
pull-repo-config:
|
||||||
|
image: codeberg.org/freeyourgadget/android-fdroid-tools:latest
|
||||||
|
commands:
|
||||||
|
- cd ..
|
||||||
|
- pwd
|
||||||
|
- mkdir repoconfig
|
||||||
|
- cd repoconfig
|
||||||
|
- pwd
|
||||||
|
- git clone --depth 1 https://codeberg.org/Bazsalanszky/fdroid-repo-config
|
||||||
|
- cp "${CI_WORKSPACE%%${CI_REPO_NAME}}"/eu.toldi.infinityforlemmy.nightly.apk fdroid-repo-config/repo/
|
||||||
|
|
||||||
|
pull-pages:
|
||||||
|
image: codeberg.org/freeyourgadget/android-fdroid-tools:latest
|
||||||
|
commands:
|
||||||
|
- cd ..
|
||||||
|
- pwd
|
||||||
|
- mkdir pages
|
||||||
|
- cd pages
|
||||||
|
- pwd
|
||||||
|
- git clone --depth 2 https://codeberg.org/Bazsalanszky/pages
|
||||||
|
- cd pages
|
||||||
|
- git config user.name "CODEBERG CI"
|
||||||
|
- git config user.email "noreply@nodomain.nodomain"
|
||||||
|
# reset and remove, later force push, to keep repo size small
|
||||||
|
- git reset --soft HEAD~1
|
||||||
|
- git status
|
||||||
|
|
||||||
|
update-fdroid-data:
|
||||||
|
image: codeberg.org/freeyourgadget/android-fdroid-tools:latest
|
||||||
|
commands:
|
||||||
|
- pwd
|
||||||
|
- cd ../repoconfig/fdroid-repo-config/
|
||||||
|
# get secrets from storage
|
||||||
|
- cp
|
||||||
|
- fdroid update
|
||||||
|
- fdroid deploy
|
||||||
|
- ls -laR repo
|
||||||
|
secrets: [ signing_key, keystorepass, keypass ]
|
||||||
|
|
||||||
|
push-pages-update-repo:
|
||||||
|
image: codeberg.org/freeyourgadget/android-fdroid-tools:latest
|
||||||
|
commands:
|
||||||
|
- if [ -f .do_not_build ]; then return 0; fi
|
||||||
|
- cd ../pages/pages/
|
||||||
|
- git add -A
|
||||||
|
- git status
|
||||||
|
- git diff
|
||||||
|
- ls -lsR fdroid/repo
|
||||||
|
- git commit -m "autodeploy"
|
||||||
|
- git remote remove origin
|
||||||
|
- git remote add origin https://"$${GITEA_ACCESS_TOKEN}"@codeberg.org/Freeyourgadget/pages.git
|
||||||
|
# force push as we removed all data
|
||||||
|
- git push -f origin master
|
||||||
|
- cd ../../
|
||||||
|
- pwd
|
||||||
|
- ls -la
|
||||||
|
secrets: [ GITEA_ACCESS_TOKEN ]
|
||||||
|
when:
|
||||||
|
event: cron
|
@ -59,12 +59,12 @@ android {
|
|||||||
variant.resValue "string", "applicationId", variant.applicationId
|
variant.resValue "string", "applicationId", variant.applicationId
|
||||||
|
|
||||||
|
|
||||||
if (variant.buildType.name == 'nightly' || variant.buildType.name == 'nopebble') {
|
if (variant.buildType.name == 'nightly') {
|
||||||
variant.outputs.all {
|
variant.outputs.all {
|
||||||
setVersionCodeOverride(getCommitVersionCode())
|
setVersionCodeOverride(getCommitVersionCode())
|
||||||
|
|
||||||
setVersionNameOverride(variant.versionName)
|
setVersionNameOverride(variant.versionName)
|
||||||
outputFileName = "${applicationId}_${variant.versionName}.apk"
|
outputFileName = "${applicationId}.apk"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user