Skip to content

Commit

Permalink
Add Flatpak CI/CD Integration
Browse files Browse the repository at this point in the history
Adds flatpak manifest file and integrates flatpak ci with the application. @Apol @Ravier
  • Loading branch information
Neelaksh-Singh authored and aleixpol committed Feb 21, 2023
1 parent aa4fd31 commit 2a35dbb
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .flatpak-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"id": "org.kde.kbruch",
"runtime": "org.kde.Platform",
"runtime-version": "5.15-22.08",
"sdk": "org.kde.Sdk",
"command": "kbruch",
"rename-icon": "kbruch",
"finish-args": [
"--share=ipc",
"--socket=x11",
"--socket=wayland",
"--device=dri"
],
"modules": [
{
"name": "kbruch",
"buildsystem": "cmake-ninja",
"sources": [
{
"type": "dir",
"path": "."
}
]
}
]
}
2 changes: 2 additions & 0 deletions .flatpak-manifest.json.license
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# SPDX-FileCopyrightText: None
# SPDX-License-Identifier: CC0-1.0
1 change: 1 addition & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ include:
- https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/freebsd-qt6.yml
- https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/windows.yml
- https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/windows-qt6.yml
- https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/flatpak.yml

0 comments on commit 2a35dbb

Please sign in to comment.