1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
include: 'https://gitlab.gnome.org/GNOME/citemplates/raw/master/flatpak/flatpak_ci_initiative.yml'
variables:
BUNDLE: "gfeeds.flatpak"
test:
image: python:3.7
script:
- pip install pyflakes
- pyflakes gfeeds
flatpak:
image: 'registry.gitlab.gnome.org/gnome/gnome-runtime-images/gnome:3.38'
variables:
MANIFEST_PATH: "dist/flatpak/org.gabmus.gfeeds.json"
MESON_ARGS: "-Dprofile=Devel"
FLATPAK_MODULE: "gfeeds"
RUNTIME_REPO: "https://flathub.org/repo/flathub.flatpakrepo"
APP_ID: "org.gabmus.gfeeds"
extends: .flatpak
|