Skip to content
Snippets Groups Projects
Verified Commit 19750e92 authored by Bruce Cowan's avatar Bruce Cowan :airplane:
Browse files

Swap from YAML to JSON for flatpak config

gnome-builder doesn't support YAML
parent 2ee68ea1
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ flatpak:
image: alpine:latest
stage: build
variables:
MANIFEST_PATH: "uk.me.bcowan.Rugby.yml"
MANIFEST_PATH: "uk.me.bcowan.Rugby.json"
RUNTIME_REPO: "https://flathub.org/repo/flathub.flatpakrepo"
FLATPAK_MODULE: "rugby"
BUNDLE: "rugby.flatpak"
......
{
"app-id": "uk.me.bcowan.Rugby",
"runtime": "org.gnome.Platform",
"runtime-version": "master",
"sdk": "org.gnome.Sdk",
"command": "rugby",
"finish-args": [
"--share=ipc",
"--device=dri",
"--socket=fallback-x11",
"--socket=wayland"
],
"modules": [
{
"name": "blueprint-compiler",
"buildsystem": "meson",
"sources": [
{
"type": "git",
"url": "https://gitlab.gnome.org/jwestman/blueprint-compiler",
"tag": "v0.10.0"
}
]
},
{
"name": "rugby",
"buildsystem": "meson",
"builddir": true,
"sources": [
{
"type": "dir",
"path": "."
}
],
"config_opts": [
"-Dprofile=development"
]
}
]
}
SPDX-FileCopyrightText: 2024 Bruce Cowan <bruce@bcowan.me.uk>
SPDX-License-Identifier: GPL-3.0-or-later
# SPDX-FileCopyrightText: 2018-2023 Bruce Cowan <bruce@bcowan.me.uk>
#
# SPDX-License-Identifier: GPL-3.0-or-later
app-id: uk.me.bcowan.Rugby
runtime: org.gnome.Platform
runtime-version: "master"
sdk: org.gnome.Sdk
command: rugby
finish-args:
- "--share=ipc"
- "--device=dri"
- "--socket=fallback-x11"
- "--socket=wayland"
modules:
- name: blueprint-compiler
buildsystem: meson
sources:
- type: git
url: https://gitlab.gnome.org/jwestman/blueprint-compiler
tag: v0.10.0
- name: rugby
buildsystem: meson
builddir: true
sources:
- type: dir
path: .
config_opts:
- "-Dprofile=development"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment