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
|
2022-09-14 21:00:17 +00:00
|
|
|
- sonar-scanner -Dsonar.projectKey=SelfPrivacy-Flutter-App -Dsonar.sources=. -Dsonar.host.url=http://analyzer.lan:9000 -Dsonar.login="$SONARQUBE_TOKEN"
|
|
|
|
environment:
|
|
|
|
SONARQUBE_TOKEN:
|
|
|
|
from_secret: SONARQUBE_TOKEN
|
2022-09-14 13:21:46 +00:00
|
|
|
|
|
|
|
- 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
|
|
|
|
2022-09-15 01:21:33 +00:00
|
|
|
- name: Build Bundle Target
|
|
|
|
commands:
|
|
|
|
- ./ci.py --ci-build-bundle
|
|
|
|
|
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
|
|
|
|
2022-09-15 01:21:33 +00:00
|
|
|
# - name: Build Intermediate Linux Release Artifact (Binary)
|
|
|
|
# commands:
|
|
|
|
# - ./ci.py --build-linux
|
|
|
|
# environment:
|
|
|
|
# STANDALONE_KEYSTORE_PASS:
|
|
|
|
# from_secret: STANDALONE_KEYSTORE_PASS
|
|
|
|
# FDROID_KEYSTORE_PASS:
|
|
|
|
# from_secret: FDROID_KEYSTORE_PASS
|
|
|
|
|
|
|
|
# - name: Build Intermediate Android Release Artifact (.APK)
|
|
|
|
# commands:
|
|
|
|
# - ./ci.py --build-apk
|
|
|
|
# environment:
|
|
|
|
# STANDALONE_KEYSTORE_PASS:
|
|
|
|
# from_secret: STANDALONE_KEYSTORE_PASS
|
|
|
|
# FDROID_KEYSTORE_PASS:
|
|
|
|
# from_secret: FDROID_KEYSTORE_PASS
|
|
|
|
|
|
|
|
- name: Build and Sign Android Release Artifact (Bundle)
|
|
|
|
commands:
|
|
|
|
- ./ci.py --build-bundle
|
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-15 01:35:58 +00:00
|
|
|
GOOGLE_KEYSTORE_PASS:
|
|
|
|
from_secret: GOOGLE_KEYSTORE_PASS
|
2022-09-15 01:21:33 +00:00
|
|
|
|
|
|
|
# - name: Sign Android Release Artifact (.APK) for Standalone Use
|
|
|
|
# commands:
|
|
|
|
# - ./ci.py --sign-apk-standalone
|
|
|
|
# environment:
|
|
|
|
# STANDALONE_KEYSTORE_PASS:
|
|
|
|
# from_secret: STANDALONE_KEYSTORE_PASS
|
|
|
|
# FDROID_KEYSTORE_PASS:
|
|
|
|
# from_secret: FDROID_KEYSTORE_PASS
|
|
|
|
|
|
|
|
# - name: Sign Android Release Artifact (.APK) for F-Droid Repository
|
|
|
|
# commands:
|
|
|
|
# - ./ci.py --sign-apk-fdroid
|
|
|
|
# environment:
|
|
|
|
# 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
|
|
|
|
|
|
|
|
# - name: Push Artifacts to the Release Volume
|
|
|
|
# commands:
|
|
|
|
# - git add -v *.AppImage *.AppImage.zsync *.flatpak *.apk *.apk.idsig *.tar.zstd
|
|
|
|
# - git commit -m Release
|
|
|
|
# - git archive --format=tar HEAD | podman volume import release -
|
2022-09-14 13:21:46 +00:00
|
|
|
|
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
|