From 3dcb0d1c8f341aa6d368a4ed4a0bf67394d4b658 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Tue, 30 Jul 2024 13:19:41 -0400 Subject: [PATCH] Add perl to test dependencies And actually make ci-test not *also* run asan... --- build-aux/ci-test | 4 ++-- build-aux/ci-test-asan | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build-aux/ci-test b/build-aux/ci-test index e2c6d68..6f9c18c 100755 --- a/build-aux/ci-test +++ b/build-aux/ci-test @@ -5,10 +5,10 @@ cd /github/workspace # Needed to ensure PATH is properly set for perl, etc. source /etc/profile -pacman -Syu --noconfirm base-devel git gmock gtest python meson pcre +pacman -Syu --noconfirm base-devel git gmock gtest python meson pcre perl # build -meson build --prefix=/usr --buildtype=debugoptimized -Db_sanitize=address +meson build --prefix=/usr --buildtype=debugoptimized ninja -C build # test diff --git a/build-aux/ci-test-asan b/build-aux/ci-test-asan index be733a6..e4fd2fb 100755 --- a/build-aux/ci-test-asan +++ b/build-aux/ci-test-asan @@ -5,7 +5,7 @@ cd /github/workspace # Needed to ensure PATH is properly set for perl, etc. source /etc/profile -pacman -Syu --noconfirm base-devel git gmock gtest python meson pcre +pacman -Syu --noconfirm base-devel git gmock gtest python meson pcre perl # build meson build-asan --prefix=/usr --buildtype=debugoptimized -Db_sanitize=address