diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2022-04-30 05:43:29 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-06-16 03:43:06 +0200 |
commit | 83dda3d28b5974c363fb9e9c7f244693a29cb415 (patch) | |
tree | 2c675f37efd7a3f8e34c1f99fedf08ed90ee8e09 /.github/workflows/unit_tests.sh | |
parent | meson: bump required version to 0.60.0 (diff) | |
download | systemd-83dda3d28b5974c363fb9e9c7f244693a29cb415.tar.xz systemd-83dda3d28b5974c363fb9e9c7f244693a29cb415.zip |
ci: drop the "find" kludge
meson no longer complains about install_tag
Diffstat (limited to '')
-rwxr-xr-x | .github/workflows/unit_tests.sh | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/.github/workflows/unit_tests.sh b/.github/workflows/unit_tests.sh index 562bafb614..e9a398c701 100755 --- a/.github/workflows/unit_tests.sh +++ b/.github/workflows/unit_tests.sh @@ -70,10 +70,6 @@ for phase in "${PHASES[@]}"; do mv /etc/machine-id /etc/machine-id.bak fi fi - # The install_tag feature introduced in 0.60 causes meson to fail with fatal-meson-warnings - # "Project targeting '>= 0.53.2' but tried to use feature introduced in '0.60.0': install_tag arg in custom_target" - # It can be safely removed from the CI since it isn't actually used anywhere to test anything. - find . -type f -name meson.build -exec sed -i '/install_tag/d' '{}' '+' MESON_ARGS+=(--fatal-meson-warnings) run_meson -Dnobody-group=nogroup --werror -Dtests=unsafe -Dslow-tests=true -Dfuzz-tests=true "${MESON_ARGS[@]}" build ninja -C build -v @@ -94,10 +90,6 @@ for phase in "${PHASES[@]}"; do MESON_ARGS+=(-Dskip-deps=true) fi fi - # The install_tag feature introduced in 0.60 causes meson to fail with fatal-meson-warnings - # "Project targeting '>= 0.53.2' but tried to use feature introduced in '0.60.0': install_tag arg in custom_target" - # It can be safely removed from the CI since it isn't actually used anywhere to test anything. - find . -type f -name meson.build -exec sed -i '/install_tag/d' '{}' '+' MESON_ARGS+=(--fatal-meson-warnings) run_meson -Dnobody-group=nogroup --werror -Dtests=unsafe -Db_sanitize=address,undefined "${MESON_ARGS[@]}" build ninja -C build -v |