diff options
author | Omar Polo <op@omarpolo.com> | 2024-05-29 09:05:06 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2024-05-29 09:05:06 +0000 |
commit | 7c723cf05f1a284906063a475d0c39b45bd7f730 (patch) | |
tree | de2b908cf18dc5ca6a7dacbdb40d324d3f4331b7 /.cirrus.yml | |
parent | b5dd7091ad9dc5216a54e4af50fbd26decb96d34 (diff) |
regress: add a knob to disable test_ipv6_addr
at least on the CI is failing with "can't connect to ::1:10965:
Address not available" which suggests IPv6 is broken there.
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 510c120..c901406 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -1,6 +1,9 @@ # gcc' -Werror=use-after-free gets tripped by vis.c: it sees a use # after free where it's not possible and breaks the CI. +# seems that inside the CI it's not currently possible to bind to ::1 +# so set HAVE_IPV6=no. + linux_amd64_task: container: image: alpine:latest @@ -8,7 +11,7 @@ linux_amd64_task: - apk add alpine-sdk linux-headers bison libretls-dev libevent-dev - ./configure CFLAGS='-O2 -pipe -Wno-deprecated-declarations -Wno-use-after-free' -Werror - make - - make regress REGRESS_HOST="*" + - make regress REGRESS_HOST="*" HAVE_IPV6=no linux_arm_task: arm_container: @@ -17,7 +20,7 @@ linux_arm_task: - apk add alpine-sdk linux-headers bison libretls-dev libevent-dev - ./configure CFLAGS='-O2 -pipe -Wno-deprecated-declarations -Wno-use-after-free' -Werror - make - - make regress REGRESS_HOST="*" + - make regress REGRESS_HOST="*" HAVE_IPV6=no freebsd_14_task: freebsd_instance: @@ -26,7 +29,7 @@ freebsd_14_task: script: - ./configure CFLAGS='-O2 -pipe -Wno-deprecated-declarations' -Werror - make - - make regress + - make regress HAVE_IPV6=no # # There are some issues with imsg fd passing on macos at the moment that |