aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-01-15 16:37:02 +0000
committerGravatar Sadie Powell2022-01-15 18:36:51 +0000
commitb52983b268e2cf90c1a2e3af96d381fe924e794d (patch)
tree19646850d920e396dd7bc15ab35d4abdca77c50d /tools
parentFix a warning when building with the poll socket engine on Alpine. (diff)
Improve CI scripts.
- Add support for skipping CI on specific platforms with commit comments. - Add support for testing on Alpine (which uses musl instead of glibc). - Rename "Linux CI" to "Ubuntu CI" now we test other Linux distros. - Properly add packages to the PATH and LD_LIBRARY_PATH on macOS.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/test-build1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/test-build b/tools/test-build
index ff2ce9501..35491d27a 100755
--- a/tools/test-build
+++ b/tools/test-build
@@ -49,6 +49,7 @@ for my $compiler (@compilers) {
for my $socketengine (@socketengines) {
say "Attempting to build using the $compiler compiler and the $socketengine socket engine...";
my @configure_flags;
+ push @configure_flags, '--disable-ownership' unless $>;
if (defined $ENV{TEST_BUILD_MODULES}) {
execute "$root/configure", '--enable-extras', $ENV{TEST_BUILD_MODULES};
push @configure_flags, '--disable-auto-extras';