blob: 9be7a9c6939ec8a89d743c6747e13a29c36ecd82 (
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
33
|
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
image: registry.gitlab.gnome.org/gnome/gnome-runtime-images/gnome:master
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
|