gaphor/org.gaphor.Gaphor.json
Arjan Molenaar b66cb89cd2 Make self-test a command, instead of an option
Now you can self-test by calling `gaphor self-test`.
2024-03-21 23:34:37 +01:00

81 lines
1.8 KiB
JSON

{
"app-id": "org.gaphor.Gaphor.Devel",
"runtime": "org.gnome.Platform",
"runtime-version": "45",
"tags": [
"devel",
"development",
"nightly"
],
"sdk": "org.gnome.Sdk",
"command": "gaphor",
"build-options": {
"build-args": [
"--share=network"
],
"test-args": [
"--socket=wayland"
]
},
"finish-args": [
"--socket=fallback-x11",
"--share=ipc",
"--socket=wayland",
"--device=dri",
"--socket=session-bus"
],
"modules": [
{
"name": "fake-graphviz",
"buildsystem": "simple",
"build-commands": [
"mkdir -p ${FLATPAK_DEST}/bin",
"cp dot ${FLATPAK_DEST}/bin/dot",
"chmod +x ${FLATPAK_DEST}/bin/dot"
],
"sources": [
{
"type": "file",
"path": "_packaging/flatpak-devel/dot"
}
]
},
{
"name": "install",
"buildsystem": "simple",
"build-commands": [
"pip3 install --prefix=${FLATPAK_DEST} poetry",
"${FLATPAK_DEST}/bin/poetry export --output=requirements.txt",
"pip3 install --no-cache-dir --ignore-installed --prefix=${FLATPAK_DEST} -r requirements.txt"
],
"sources": [
{
"type": "file",
"path": "pyproject.toml"
},
{
"type": "file",
"path": "poetry.lock"
}
]
},
{
"name": "gaphor",
"buildsystem": "simple",
"build-commands": [
"pip3 install --no-cache-dir --ignore-installed --prefix=${FLATPAK_DEST} .",
"gaphor install-schemas --schemas-dir=/app/share/glib-2.0/schemas"
],
"sources": [
{
"type": "dir",
"path": "."
}
],
"run-tests": true,
"test-commands": [
"gaphor self-test"
]
}
]
}