codeeditor/dev.aparoksha.Demo.json
david-swift 76718bd057
All checks were successful
SwiftLint / SwiftLint (push) Successful in 5s
Deploy Docs / publish (push) Successful in 4m18s
Fix actions failing
2025-04-15 17:23:34 +02:00

53 lines
1.1 KiB
JSON

{
"app-id": "dev.aparoksha.Demo",
"runtime": "org.gnome.Platform",
"runtime-version": "48",
"sdk": "org.gnome.Sdk",
"sdk-extensions": [
"org.freedesktop.Sdk.Extension.swift6"
],
"command": "Test",
"finish-args": [
"--share=network",
"--share=ipc",
"--socket=fallback-x11",
"--device=dri",
"--socket=wayland"
],
"build-options": {
"append-path": "/usr/lib/sdk/swift6/bin",
"prepend-ld-library-path": "/usr/lib/sdk/swift6/lib"
},
"cleanup": [
"/include",
"/lib/pkgconfig",
"/man",
"/share/doc",
"/share/gtk-doc",
"/share/man",
"/share/pkgconfig",
"/share/vala",
"*.la",
"*.a"
],
"modules": [
{
"name": "Test",
"builddir": true,
"buildsystem": "simple",
"sources": [
{
"type": "dir",
"path": "."
}
],
"build-commands": [
"swift build -c debug --static-swift-stdlib",
"install -Dm755 .build/debug/Test /app/bin/Test",
"swiftlint Sources",
"swiftlint Tests"
]
}
]
}