diff options
| author | Matthew Fennell <matthew@fennell.dev> | 2025-12-27 12:40:20 +0000 |
|---|---|---|
| committer | Matthew Fennell <matthew@fennell.dev> | 2025-12-27 12:40:20 +0000 |
| commit | 5d8e439bc597159e3c9f0a8b65c0ae869dead3a8 (patch) | |
| tree | ed28aefed8add0da1c55c08fdf80b23c4346e0dc /.gitlab-ci.yml | |
Import Upstream version 43.0upstream/latest
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 32 |
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 |
