luminate-old/dev.bscubed.Luminate.json
Brendan Szymanski 70731ec633 Initial CI/CD pipeline
## Description

Add Forgejo Actions CI pipeline with flatpak builds and tests.

Closes #<!-- issue number -->

## Type of change

- [ ] 🐛 Bug fix
- [ ]  New feature
- [ ] ♻️ Refactor / code cleanup
- [ ] 📖 Documentation
- [x] 🔧 Dependencies / build tooling

## How was this tested?

Verified CI pipeline runs successfully with flatpak builds and tests in Forgejo Actions.

## Checklist

- [ ] I have read the [contributing guide](CONTRIBUTING.md)
- [ ] My code follows the project's style guidelines
- [ ] I have added or updated tests as needed
- [ ] Documentation has been updated where applicable
- [ ] All existing tests pass

Pull request: (#3)

## Description

Add Forgejo Actions CI pipeline with flatpak builds and tests.

Closes #<!-- issue number -->

## Type of change

- [ ] 🐛 Bug fix
- [ ]  New feature
- [ ] ♻️ Refactor / code cleanup
- [ ] 📖 Documentation
- [x] 🔧 Dependencies / build tooling

## How was this tested?

Verified CI pipeline runs successfully with flatpak builds and tests in Forgejo Actions.

## Checklist

- [ ] I have read the [contributing guide](CONTRIBUTING.md)
- [ ] My code follows the project's style guidelines
- [ ] I have added or updated tests as needed
- [ ] Documentation has been updated where applicable
- [ ] All existing tests pass
Co-authored-by: Brendan Szymanski <hello@bscubed.dev>
Co-committed-by: Brendan Szymanski <hello@bscubed.dev>
2026-06-23 23:36:14 +00:00

60 lines
1.7 KiB
JSON

{
"app-id": "dev.bscubed.Luminate",
"runtime": "org.gnome.Platform",
"runtime-version": "50",
"sdk": "org.gnome.Sdk",
"sdk-extensions": [
"org.freedesktop.Sdk.Extension.swift6"
],
"command": "Luminate",
"finish-args": [
"--share=ipc",
"--socket=fallback-x11",
"--socket=wayland",
"--device=dri",
"--share=network"
],
"build-options": {
"append-path": "/usr/lib/sdk/swift6/bin",
"prepend-ld-library-path": "/usr/lib/sdk/swift6/lib",
"build-args": [
"--socket=x11"
]
},
"cleanup": [
"/include",
"/lib/pkgconfig",
"/man",
"/share/doc",
"/share/gtk-doc",
"/share/man",
"/share/pkgconfig",
"*.la",
"*.a"
],
"modules": [
{
"name": "Luminate",
"builddir": true,
"buildsystem": "simple",
"sources": [
{
"type": "dir",
"path": "."
},
"generated-sources.json"
],
"build-commands": [
"./setup-offline.sh",
"swift build -c debug --static-swift-stdlib --skip-update",
"swift test --enable-code-coverage --skip-update",
"strip .build/debug/Luminate",
"install -Dm755 .build/debug/Luminate /app/bin/Luminate",
"install -Dm644 data/dev.bscubed.Luminate.metainfo.xml $DESTDIR/app/share/metainfo/dev.bscubed.Luminate.metainfo.xml",
"install -Dm644 data/dev.bscubed.Luminate.desktop $DESTDIR/app/share/applications/dev.bscubed.Luminate.desktop",
"install -Dm644 data/icons/dev.bscubed.Luminate.svg $DESTDIR/app/share/icons/hicolor/scalable/apps/dev.bscubed.Luminate.svg",
"install -Dm644 data/icons/dev.bscubed.Luminate-symbolic.svg $DESTDIR/app/share/icons/hicolor/symbolic/apps/dev.bscubed.Luminate-symbolic.svg"
]
}
]
}