summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-08-22 11:01:48 -0400
committerDavid Robillard <d@drobilla.net>2022-08-22 11:01:48 -0400
commit9cf7d1b3ca055fcfadc34bd269ef5f7227e155d8 (patch)
treea225211663d16db5795d98b6256b0261c2eb20d4
parent5d32959f829725e0e059d55329bce69764618c22 (diff)
downloadraul-9cf7d1b3ca055fcfadc34bd269ef5f7227e155d8.tar.gz
raul-9cf7d1b3ca055fcfadc34bd269ef5f7227e155d8.tar.bz2
raul-9cf7d1b3ca055fcfadc34bd269ef5f7227e155d8.zip
Only run autoship test in strict mode
-rw-r--r--INSTALL.md4
-rw-r--r--NEWS6
-rw-r--r--meson.build2
-rw-r--r--test/meson.build18
4 files changed, 21 insertions, 9 deletions
diff --git a/INSTALL.md b/INSTALL.md
index abdf7ca..96c4a60 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -39,6 +39,10 @@ Options can be set by passing C-style "define" options to `configure`:
meson configure -Dcpp_args="-march=native" -Dprefix="/opt/mypackage/"
+Note that some options, such as `strict` and `werror` are for
+developer/maintainer use only. Please don't file issues about anything that
+happens when they are enabled.
+
Building
--------
diff --git a/NEWS b/NEWS
index 395916c..e3890c0 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,9 @@
+raul (2.0.1) unstable; urgency=medium
+
+ * Avoid maintainer tests unless strict option is set
+
+ -- David Robillard <d@drobilla.net> Mon, 22 Aug 2022 15:01:31 +0000
+
raul (2.0.0) stable; urgency=medium
* Add INSTALL.md file
diff --git a/meson.build b/meson.build
index db957bd..6950e71 100644
--- a/meson.build
+++ b/meson.build
@@ -2,7 +2,7 @@
# SPDX-License-Identifier: CC0-1.0 OR GPL-3.0-or-later
project('raul', ['cpp'],
- version: '2.0.0',
+ version: '2.0.1',
license: 'GPLv3+',
meson_version : '>= 0.49.2',
default_options: [
diff --git a/test/meson.build b/test/meson.build
index c134067..e14560c 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -2,14 +2,16 @@
# SPDX-License-Identifier: CC0-1.0 OR GPL-3.0-or-later
if not get_option('tests').disabled() and not meson.is_subproject()
- # Check release metadata
- autoship = find_program('autoship', required: get_option('tests'))
- if autoship.found()
- test(
- 'autoship', autoship,
- args: ['test', raul_src_root],
- suite: 'data',
- )
+ if get_option('strict')
+ # Check release metadata
+ autoship = find_program('autoship', required: get_option('tests'))
+ if autoship.found()
+ test(
+ 'autoship', autoship,
+ args: ['test', raul_src_root],
+ suite: 'data',
+ )
+ endif
endif
# Check licensing metadata