diff --git a/ci_config.json b/ci_config.json index 05d9379b9..588257228 100644 --- a/ci_config.json +++ b/ci_config.json @@ -891,7 +891,6 @@ "brew_packages": [ "sqlite" ] - }, "tinyfsm": { "build_options": [ @@ -934,5 +933,12 @@ "build_options": [ "x-plane-sdk:cpp=enabled" ] + }, + "range-v3": { + "build-options": [ + "range-v3:tests=true" + ], + "fatal_warnings": false, + "skip_tests": false } } diff --git a/releases.json b/releases.json index afe1e6efd..0a53dab59 100644 --- a/releases.json +++ b/releases.json @@ -2801,6 +2801,7 @@ "range-v3" ], "versions": [ + "0.12.0-3", "0.12.0-2", "0.12.0-1", "0.11.0-1", diff --git a/subprojects/packagefiles/range-v3/meson.build b/subprojects/packagefiles/range-v3/meson.build index bf61d2005..7b037dff3 100644 --- a/subprojects/packagefiles/range-v3/meson.build +++ b/subprojects/packagefiles/range-v3/meson.build @@ -7,4 +7,6 @@ range_dep = declare_dependency( include_directories : range_inc ) -subdir('test') +if get_option('tests') + subdir('test') +endif diff --git a/subprojects/packagefiles/range-v3/meson_options.txt b/subprojects/packagefiles/range-v3/meson_options.txt new file mode 100644 index 000000000..8bd237bc4 --- /dev/null +++ b/subprojects/packagefiles/range-v3/meson_options.txt @@ -0,0 +1 @@ +option('tests', type : 'boolean', value : true, description : 'build tests')