blob: 763646861db9dc054a072e12fa8f724fcea3c1ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
include: 'https://gitlab.gnome.org/GNOME/citemplates/raw/master/flatpak/flatpak_ci_initiative.yml'
variables:
GIT_SUBMODULE_STRATEGY: normal
BUNDLE: "org.gnome.Dictionary.Devel.flatpak"
stages:
- flatpak
- deploy
##################
# Flatpak Bundle #
##################
flatpak:master:
extends: .flatpak
stage: flatpak
variables:
MANIFEST_PATH: "build-aux/flatpak/org.gnome.Dictionary.json"
RUNTIME_REPO: "https://nightly.gnome.org/gnome-nightly.flatpakrepo"
# Replace with your application name, as written in the manifest
FLATPAK_MODULE: "gnome-dictionary"
# Make sure to keep this in sync with the Flatpak manifest, all arguments
# are passed except the config-args because we build it ourselves
MESON_ARGS: "-Dprofile=development"
APP_ID: "org.gnome.Dictionary.Devel"
flatpak:nightly:
extends: .publish_nightly
dependencies:
- flatpak:master
|