2020-07-09 08:55:05 +02:00
|
|
|
stages:
|
|
|
|
- test
|
|
|
|
- build
|
|
|
|
- sign
|
|
|
|
- publish
|
|
|
|
|
|
|
|
test:
|
|
|
|
image: nextcloudci/android:android-49
|
|
|
|
stage: test
|
|
|
|
script:
|
|
|
|
- ./gradlew test
|
|
|
|
|
|
|
|
build:
|
|
|
|
image: nextcloudci/android:android-49
|
|
|
|
stage: build
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
script:
|
|
|
|
- ./gradlew build
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- app/build/outputs/
|
|
|
|
expire_in: 15 minutes
|
|
|
|
|
|
|
|
sign:
|
|
|
|
image: nextcloudci/android:android-49
|
|
|
|
stage: sign
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
variables:
|
|
|
|
OUTPUT: "signed.apk"
|
|
|
|
GITEA: "https://gitea.com"
|
|
|
|
KS_FILE: "ci_keystore.jks"
|
|
|
|
script:
|
|
|
|
- ./scripts/sign-build.sh
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- signed.apk
|
2020-07-09 13:29:36 +02:00
|
|
|
expire_in: 15 minutes
|
2020-07-09 08:55:05 +02:00
|
|
|
|
|
|
|
latest:
|
|
|
|
image: tutum/curl
|
|
|
|
stage: publish
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
variables:
|
|
|
|
WEBDAV_USERNAME: "GitNexBot"
|
|
|
|
PLUGIN_FILE: "signed.apk"
|
2020-07-09 13:29:36 +02:00
|
|
|
PLUGIN_DESTINATION: "https://cloud.swatian.com/remote.php/dav/files/GitNexBot/gitnex/builds/latest.apk"
|
2020-07-09 08:55:05 +02:00
|
|
|
script:
|
|
|
|
- curl -T "$PLUGIN_FILE" -u "$WEBDAV_USERNAME":"$WEBDAV_PASSWORD" "$PLUGIN_DESTINATION"
|
|
|
|
|
|
|
|
release:
|
|
|
|
image: tutum/curl
|
|
|
|
stage: publish
|
|
|
|
only:
|
|
|
|
- tags
|
|
|
|
variables:
|
|
|
|
WEBDAV_USERNAME: "GitNexBot"
|
|
|
|
PLUGIN_FILE: "signed.apk"
|
|
|
|
script:
|
2020-07-09 13:37:44 +02:00
|
|
|
- "[[ $CI_COMMIT_REF_NAME == *'-rc'* ]] && echo 'Upload blocked. Build seems to be a release candidate.' && exit 0"
|
2020-07-09 13:29:36 +02:00
|
|
|
- curl -T "$PLUGIN_FILE" -u "$WEBDAV_USERNAME":"$WEBDAV_PASSWORD" 'https://cloud.swatian.com/remote.php/dav/files/GitNexBot/gitnex/releases/'"$CI_COMMIT_REF_NAME"'.apk'
|