1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 01:32:11 +02:00

Add Flatpak CI/CD Integration

Adds flatpak manifest file and integrates flatpak ci with the application. @apol @ravier
This commit is contained in:
Neelaksh Singh 2023-02-20 22:26:38 +00:00 committed by Juraj Oravec
parent c5bf7485a8
commit ed8807354f
3 changed files with 40 additions and 0 deletions

37
.flatpak-manifest.json Normal file
View File

@ -0,0 +1,37 @@
{
"id": "org.kde.falkon",
"runtime": "org.kde.Platform",
"runtime-version": "5.15-22.08",
"base": "io.qt.qtwebengine.BaseApp",
"base-version": "5.15-22.08",
"sdk": "org.kde.Sdk",
"command": "falkon",
"rename-icon": "falkon",
"finish-args": [
"--share=ipc",
"--share=network",
"--socket=fallback-x11",
"--socket=wayland",
"--socket=pulseaudio",
"--device=dri",
"--system-talk-name=org.freedesktop.GeoClue2",
"--system-talk-name=org.freedesktop.UPower.*",
"--talk-name=org.kde.kwalletd5",
"--own-name=org.mpris.MediaPlayer2.falkon.*"
],
"modules": [
{
"buildsystem": "cmake-ninja",
"name": "falkon",
"config-opts": [
"-DENABLE_TESTING=OFF"
],
"sources": [
{
"type": "dir",
"path": "."
}
]
}
]
}

View File

@ -0,0 +1,2 @@
# SPDX-FileCopyrightText: None
# SPDX-License-Identifier: CC0-1.0

View File

@ -1,3 +1,4 @@
include:
- https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/linux.yml
- https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/freebsd.yml
- https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/flatpak.yml