diff options
author | Ernestas Kulik <ernestask@gnome.org> | 2018-03-19 13:53:22 +0200 |
---|---|---|
committer | Ernestas Kulik <ernestask@gnome.org> | 2018-03-19 14:17:11 +0200 |
commit | fc5d9cbcbca455520c4eff94157d0846881e7202 (patch) | |
tree | 5c5786d21cf5d7155eef6179f519069d1cb072d1 /.gitlab-ci.yml | |
parent | 982e508423b927e7d771934bd660a3a2b2c31319 (diff) | |
download | nautilus-fc5d9cbcbca455520c4eff94157d0846881e7202.tar.gz |
Flatpak: Don’t rename the manifest
We can have non-matching ID and file name, and we only keep one
manifest.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 512fc0a55..aa2e6009f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,16 +15,16 @@ flatpak:master: image: registry.gitlab.com/alatiera/gnome-nightly-oci/gnome-master:latest stage: test script: - - flatpak-builder --stop-at=nautilus app build-aux/flatpak/org.gnome.NautilusDevel.json + - flatpak-builder --stop-at=nautilus app build-aux/flatpak/org.gnome.Nautilus.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-builder --run app build-aux/flatpak/org.gnome.NautilusDevel.json meson --prefix=/app --libdir=/app/lib -Dprofile=development _build - - flatpak-builder --run app build-aux/flatpak/org.gnome.NautilusDevel.json ninja -C _build install - - flatpak-builder --finish-only --repo=repo app build-aux/flatpak/org.gnome.NautilusDevel.json + - flatpak-builder --run app build-aux/flatpak/org.gnome.Nautilus.json meson --prefix=/app --libdir=/app/lib -Dprofile=development _build + - flatpak-builder --run app build-aux/flatpak/org.gnome.Nautilus.json ninja -C _build install + - flatpak-builder --finish-only --repo=repo app build-aux/flatpak/org.gnome.Nautilus.json # Make a Flatpak Nautilus bundle for people to test - flatpak build-bundle repo nautilus-dev.flatpak org.gnome.NautilusDevel # Run automatic tests inside the Flatpak env - - flatpak-builder --run app build-aux/flatpak/org.gnome.NautilusDevel.json ninja -C _build test + - flatpak-builder --run app build-aux/flatpak/org.gnome.Nautilus.json ninja -C _build test artifacts: paths: - nautilus-dev.flatpak |