[epiphany/mcatanzaro/#684] Use feature type for meson options



commit b628815f5568b3a85378c40e1ed1f39e5fa13c1a
Author: Michael Catanzaro <mcatanzaro gnome org>
Date:   Wed Feb 20 17:44:31 2019 -0600

    Use feature type for meson options
    
    This could break anyone currently using -Dunit_tests=false, but probably
    not many people choose that.

 .gitlab-ci.yml    | 2 +-
 meson_options.txt | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4bbaf9228..f08a3692d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -11,7 +11,7 @@ flatpak:
     FLATPAK_MODULE: 'epiphany'
     # 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: '-Dunit_tests=true -Dnetwork_tests=true'
+    MESON_ARGS: '-Dunit_tests=enabled -Dnetwork_tests=enabled'
     APP_ID: 'org.gnome.Epiphany'
 
 review:
diff --git a/meson_options.txt b/meson_options.txt
index 62f6c6e11..007c56393 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -5,8 +5,8 @@ option('developer_mode',
 )
 
 option('network_tests',
-  type: 'boolean',
-  value: false,
+  type: 'feature',
+  value: 'disabled',
   description: 'Enable tests that require network access, if unit_tests are enabled'
 )
 
@@ -17,7 +17,7 @@ option('tech_preview',
 )
 
 option('unit_tests',
-  type: 'boolean',
-  value: true,
+  type: 'feature',
+  value: 'enabled',
   description: 'Enable unit tests'
 )


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]