diff options
author | Ondrej Holy <oholy@redhat.com> | 2020-04-24 11:02:49 +0200 |
---|---|---|
committer | António Fernandes <antoniojpfernandes@gmail.com> | 2020-05-10 22:59:32 +0000 |
commit | 786847069478be85a8aa3d185ca344eb95104840 (patch) | |
tree | 1790a346720b0b70e7938cc15bac6ba368e07897 /build-aux | |
parent | 507e96aadfaaa8bba6d7e6848ded18f47d466424 (diff) | |
download | nautilus-786847069478be85a8aa3d185ca344eb95104840.tar.gz |
flatpak: Build all tests by default
The flatpak template has been changed recently and MESON_ARGS variable
doesn't have any effect currently. Let's drop MESON_ARGS and move the
build options into the manifests directly (ie. -Dtests=all).
See:
https://gitlab.gnome.org/GNOME/citemplates/blob/master/flatpak/flatpak_ci_initiative.yml
https://mail.gnome.org/archives/desktop-devel-list/2020-April/thread.html
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/flatpak/org.gnome.Nautilus.json | 3 | ||||
-rw-r--r-- | build-aux/flatpak/org.gnome.Nautilus.yml | 1 | ||||
-rw-r--r-- | build-aux/flatpak/org.gnome.NautilusMaster.yml | 1 |
3 files changed, 4 insertions, 1 deletions
diff --git a/build-aux/flatpak/org.gnome.Nautilus.json b/build-aux/flatpak/org.gnome.Nautilus.json index 0f76009a7..ca95c384a 100644 --- a/build-aux/flatpak/org.gnome.Nautilus.json +++ b/build-aux/flatpak/org.gnome.Nautilus.json @@ -158,7 +158,8 @@ "name": "nautilus", "config-opts": [ "--libdir=/app/lib", - "-Dprofile=Devel" + "-Dprofile=Devel", + "-Dtests=all" ], "sources": [ { diff --git a/build-aux/flatpak/org.gnome.Nautilus.yml b/build-aux/flatpak/org.gnome.Nautilus.yml index bd3a1e2ff..f22736fa6 100644 --- a/build-aux/flatpak/org.gnome.Nautilus.yml +++ b/build-aux/flatpak/org.gnome.Nautilus.yml @@ -116,6 +116,7 @@ modules: config-opts: - "--libdir=/app/lib" - "-Dprofile=Devel" + - "-Dtests=all" sources: - type: git url: https://gitlab.gnome.org/GNOME/nautilus.git diff --git a/build-aux/flatpak/org.gnome.NautilusMaster.yml b/build-aux/flatpak/org.gnome.NautilusMaster.yml index 3e7ddd1d0..10608aafd 100644 --- a/build-aux/flatpak/org.gnome.NautilusMaster.yml +++ b/build-aux/flatpak/org.gnome.NautilusMaster.yml @@ -115,6 +115,7 @@ modules: config-opts: - "--libdir=/app/lib" - "-Dprofile=Devel" + - "-Dtests=all" sources: - type: git url: https://gitlab.gnome.org/GNOME/nautilus.git |