diff options
author | Emmanuele Bassi <ebassi@gnome.org> | 2018-05-08 09:49:27 +0100 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2018-05-08 14:20:00 +0100 |
commit | f07b1313621ca7e69d236161f9b96578fc98e435 (patch) | |
tree | d6da59821af29bc4a0bf773af467c9adee539c1d | |
parent | b702618ed921f222ec0fbd80ba5e48a6fe726a26 (diff) | |
download | gtk+-f07b1313621ca7e69d236161f9b96578fc98e435.tar.gz |
ci: Disable tests when building Graphene
Our flatpak-builder manifests include building Graphene from Git; since
we're building the GTK demos, it's pointless to build the Graphene tests
as well. Disabling tests and benchmarks avoids pointless installations
inside the Flatpak build repo that will just be removed by the time we
bundle the demo.
-rw-r--r-- | build-aux/flatpak/org.gtk.Demo.json | 4 | ||||
-rw-r--r-- | build-aux/flatpak/org.gtk.WidgetFactory.json | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/build-aux/flatpak/org.gtk.Demo.json b/build-aux/flatpak/org.gtk.Demo.json index 8e5a6e9871..a0c5085591 100644 --- a/build-aux/flatpak/org.gtk.Demo.json +++ b/build-aux/flatpak/org.gtk.Demo.json @@ -46,7 +46,9 @@ "buildsystem": "meson", "builddir": true, "config-opts": [ - "--libdir=/app/lib" + "--libdir=/app/lib", + "-Dtests=false", + "-Dbenchmarks=false" ], "sources": [ { diff --git a/build-aux/flatpak/org.gtk.WidgetFactory.json b/build-aux/flatpak/org.gtk.WidgetFactory.json index 3e014844f5..c28acf426e 100644 --- a/build-aux/flatpak/org.gtk.WidgetFactory.json +++ b/build-aux/flatpak/org.gtk.WidgetFactory.json @@ -46,7 +46,9 @@ "buildsystem": "meson", "builddir": true, "config-opts": [ - "--libdir=/app/lib" + "--libdir=/app/lib", + "-Dtests=false", + "-Dbenchmarks=false" ], "sources": [ { |