summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml32
1 files changed, 32 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..7285c54
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,32 @@
+include: 'https://gitlab.gnome.org/GNOME/citemplates/raw/master/flatpak/flatpak_ci_initiative.yml'
+
+variables:
+ GIT_SUBMODULE_STRATEGY: normal
+ BUNDLE: "org.gnome.Todo.Devel.flatpak"
+
+stages:
+ - flatpak
+ - deploy
+
+
+##################
+# Flatpak Bundle #
+##################
+
+flatpak:master:
+ extends: .flatpak
+ stage: flatpak
+ variables:
+ MANIFEST_PATH: "build-aux/flatpak/org.gnome.Todo.json"
+ RUNTIME_REPO: "https://nightly.gnome.org/gnome-nightly.flatpakrepo"
+ # Replace with your application name, as written in the manifest
+ FLATPAK_MODULE: "endeavour"
+ # 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: "-Dtracing=true -Dprofile=development"
+ APP_ID: "org.gnome.Todo.Devel"
+
+flatpak:nightly:
+ extends: .publish_nightly
+ dependencies:
+ - flatpak:master