diff options
author | David Robillard <d@drobilla.net> | 2022-08-22 11:01:48 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-08-22 11:01:48 -0400 |
commit | 9cf7d1b3ca055fcfadc34bd269ef5f7227e155d8 (patch) | |
tree | a225211663d16db5795d98b6256b0261c2eb20d4 | |
parent | 5d32959f829725e0e059d55329bce69764618c22 (diff) | |
download | raul-9cf7d1b3ca055fcfadc34bd269ef5f7227e155d8.tar.gz raul-9cf7d1b3ca055fcfadc34bd269ef5f7227e155d8.tar.bz2 raul-9cf7d1b3ca055fcfadc34bd269ef5f7227e155d8.zip |
Only run autoship test in strict mode
-rw-r--r-- | INSTALL.md | 4 | ||||
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | meson.build | 2 | ||||
-rw-r--r-- | test/meson.build | 18 |
4 files changed, 21 insertions, 9 deletions
@@ -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 -------- @@ -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 |