From 49de3ea7460bba87d9d9e3716b66f1b5eb7bae40 Mon Sep 17 00:00:00 2001 From: Niels De Graef Date: Sun, 1 Apr 2018 13:39:32 +0200 Subject: CI: build Flatpak. --- .gitlab-ci.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0216f62..f475468 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,8 +5,33 @@ - ninja -C build install stages: + - build-flatpak - build-os +flatpak:master: + image: registry.gitlab.com/alatiera/gnome-nightly-oci/gnome-master:latest + stage: build-flatpak + script: + - flatpak-builder --stop-at=gnome-contacts app data/flatpak/org.gnome.Contacts.json + # Make sure to keep this in sync with the Flatpak manifest, all arguments + # are passed except the config-args because we build it ourselves + - flatpak build app meson --prefix=/app _build + - flatpak build app ninja -C _build install + - flatpak-builder --finish-only --repo=repo app data/flatpak/org.gnome.Contacts.json + # Make a Flatpak Contacts bundle for people to test + - flatpak build-bundle repo contacts-dev.flatpak --runtime-repo=https://sdk.gnome.org/gnome-nightly.flatpakrepo org.gnome.ContactsDevel + # TODO: Run automatic tests inside the Flatpak env + # - xvfb-run -a -s "-screen 0 1024x768x24" flatpak build app ninja -C _build test + artifacts: + paths: + - contacts-dev.flatpak + - _build/meson-logs/meson-log.txt + - _build/meson-logs/testlog.txt + expire_in: 2 days + cache: + paths: + - .flatpak-builder/cache + fedora:stable: image: fedora:27 stage: build-os -- cgit v1.2.1