2022-09-04 06:30:24 +00:00
|
|
|
kind: pipeline
|
|
|
|
type: exec
|
|
|
|
name: Continuous Integration
|
|
|
|
|
|
|
|
steps:
|
2022-09-10 15:10:27 +00:00
|
|
|
- name: Prepare
|
2022-09-04 06:30:24 +00:00
|
|
|
commands:
|
2022-09-10 15:10:27 +00:00
|
|
|
- ln -s /var/lib/drone-runner-exec/.local $HOME/.local
|
|
|
|
|
2022-09-14 13:21:46 +00:00
|
|
|
- name: Run Tests
|
2022-09-10 15:10:27 +00:00
|
|
|
commands:
|
2022-09-14 13:21:46 +00:00
|
|
|
- ./ci.py --ci-run-tests
|
|
|
|
|
|
|
|
- name: Build Linux Target
|
|
|
|
commands:
|
|
|
|
- ./ci.py --ci-build-linux
|
|
|
|
|
|
|
|
- name: Build APK Target
|
|
|
|
commands:
|
|
|
|
- ./ci.py --ci-build-apk
|
2022-09-04 06:30:24 +00:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
node:
|
|
|
|
server: builder
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
kind: pipeline
|
|
|
|
type: exec
|
|
|
|
name: Release
|
|
|
|
|
|
|
|
steps:
|
2022-09-10 15:10:27 +00:00
|
|
|
- name: Prepare
|
2022-09-04 06:30:24 +00:00
|
|
|
commands:
|
2022-09-10 15:10:27 +00:00
|
|
|
- ln -s /var/lib/drone-runner-exec/.local $HOME/.local
|
2022-09-14 13:21:46 +00:00
|
|
|
- if podman volume exists release; then podman volume rm -f release; podman volume create release; else podman volume create release; fi
|
|
|
|
- git config user.email "builder@selfprivacy.org"
|
|
|
|
- git config user.name "Builder"
|
2022-09-10 15:10:27 +00:00
|
|
|
|
|
|
|
- name: Build Intermediate Linux Release Artifact (Binary)
|
|
|
|
commands:
|
|
|
|
- ./ci.py --build-linux
|
2022-09-04 06:30:24 +00:00
|
|
|
environment:
|
2022-09-10 15:10:27 +00:00
|
|
|
STANDALONE_KEYSTORE_PASS:
|
|
|
|
from_secret: STANDALONE_KEYSTORE_PASS
|
|
|
|
FDROID_KEYSTORE_PASS:
|
|
|
|
from_secret: FDROID_KEYSTORE_PASS
|
2022-09-04 06:30:24 +00:00
|
|
|
|
2022-09-10 15:10:27 +00:00
|
|
|
- name: Build Intermediate Android Release Artifact (.APK)
|
2022-09-04 06:30:24 +00:00
|
|
|
commands:
|
2022-09-10 15:10:27 +00:00
|
|
|
- ./ci.py --build-apk
|
2022-09-04 06:30:24 +00:00
|
|
|
environment:
|
2022-09-10 15:10:27 +00:00
|
|
|
STANDALONE_KEYSTORE_PASS:
|
|
|
|
from_secret: STANDALONE_KEYSTORE_PASS
|
|
|
|
FDROID_KEYSTORE_PASS:
|
|
|
|
from_secret: FDROID_KEYSTORE_PASS
|
2022-09-04 06:30:24 +00:00
|
|
|
|
2022-09-10 15:10:27 +00:00
|
|
|
- name: Sign Android Release Artifact (.APK) for Standalone Use
|
2022-09-04 06:30:24 +00:00
|
|
|
commands:
|
2022-09-10 15:10:27 +00:00
|
|
|
- ./ci.py --sign-apk-standalone
|
2022-09-04 06:30:24 +00:00
|
|
|
environment:
|
2022-09-10 15:10:27 +00:00
|
|
|
STANDALONE_KEYSTORE_PASS:
|
|
|
|
from_secret: STANDALONE_KEYSTORE_PASS
|
|
|
|
FDROID_KEYSTORE_PASS:
|
|
|
|
from_secret: FDROID_KEYSTORE_PASS
|
2022-09-04 06:30:24 +00:00
|
|
|
|
2022-09-10 15:10:27 +00:00
|
|
|
- name: Sign Android Release Artifact (.APK) for F-Droid Repository
|
2022-09-04 06:30:24 +00:00
|
|
|
commands:
|
2022-09-10 15:10:27 +00:00
|
|
|
- ./ci.py --sign-apk-fdroid
|
2022-09-04 06:30:24 +00:00
|
|
|
environment:
|
2022-09-10 15:10:27 +00:00
|
|
|
STANDALONE_KEYSTORE_PASS:
|
|
|
|
from_secret: STANDALONE_KEYSTORE_PASS
|
|
|
|
FDROID_KEYSTORE_PASS:
|
|
|
|
from_secret: FDROID_KEYSTORE_PASS
|
|
|
|
|
|
|
|
- name: Package Linux AppImage Artifact
|
|
|
|
commands:
|
|
|
|
- ./ci.py --package-linux-appimage
|
|
|
|
|
|
|
|
- name: Package Linux Flatpak Artifact
|
|
|
|
commands:
|
|
|
|
- ./ci.py --package-linux-flatpak
|
|
|
|
|
|
|
|
- name: Package Linux Archive Artifact
|
|
|
|
commands:
|
|
|
|
- ./ci.py --package-linux-archive
|
|
|
|
|
2022-09-14 13:21:46 +00:00
|
|
|
- name: Push Artifacts to the Release Volume
|
|
|
|
commands:
|
2022-09-14 20:44:58 +00:00
|
|
|
- git add -v *.AppImage *.AppImage.zsync *.flatpak *.apk *.apk.idsig *.tar.zstd
|
2022-09-14 13:21:46 +00:00
|
|
|
- git commit -m Release
|
|
|
|
- git archive --format=tar HEAD | podman volume import release -
|
|
|
|
|
2022-09-10 15:10:27 +00:00
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- tag
|
2022-09-04 06:30:24 +00:00
|
|
|
|
2022-09-10 15:10:27 +00:00
|
|
|
node:
|
|
|
|
server: builder
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
kind: pipeline
|
|
|
|
type: exec
|
|
|
|
name: Deploy
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Prepare
|
|
|
|
commands:
|
|
|
|
- ln -s /var/lib/drone-runner-exec/.local $HOME/.local
|
2022-09-14 13:21:46 +00:00
|
|
|
- podman unshare podman volume mount release
|
2022-09-10 15:10:27 +00:00
|
|
|
|
|
|
|
- name: Create Release and Deploy Artifacts
|
2022-09-04 06:30:24 +00:00
|
|
|
commands:
|
2022-09-14 13:21:46 +00:00
|
|
|
- ./ci.py --deploy-gitea-release
|
2022-09-04 06:30:24 +00:00
|
|
|
environment:
|
|
|
|
GITEA_RELEASE_TOKEN:
|
|
|
|
from_secret: GITEA_RELEASE_TOKEN
|
|
|
|
|
2022-09-10 15:10:27 +00:00
|
|
|
- name: Deploy F-Droid Repo
|
2022-09-04 06:30:24 +00:00
|
|
|
commands:
|
2022-09-14 13:21:46 +00:00
|
|
|
- ./ci.py --deploy-fdroid-repo
|
2022-09-04 06:30:24 +00:00
|
|
|
environment:
|
|
|
|
SSH_PRIVATE_KEY:
|
|
|
|
from_secret: SSH_PRIVATE_KEY
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- tag
|
|
|
|
|
|
|
|
node:
|
|
|
|
server: builder
|
2022-09-10 15:10:27 +00:00
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- Release
|