Blame


1 568419b2 2021-10-04 op linux_amd64_task:
2 568419b2 2021-10-04 op container:
3 568419b2 2021-10-04 op image: alpine:latest
4 568419b2 2021-10-04 op test_script:
5 568419b2 2021-10-04 op - apk add alpine-sdk linux-headers bison libretls-dev libevent-dev
6 cf5cf697 2023-06-13 op - ./configure CFLAGS='-O2 -pipe -Wno-deprecated-declarations' -Werror
7 568419b2 2021-10-04 op - make
8 5a345722 2023-06-23 op - make regress REGRESS_HOST="*"
9 568419b2 2021-10-04 op
10 568419b2 2021-10-04 op linux_arm_task:
11 568419b2 2021-10-04 op arm_container:
12 568419b2 2021-10-04 op image: alpine:latest
13 568419b2 2021-10-04 op test_script:
14 568419b2 2021-10-04 op - apk add alpine-sdk linux-headers bison libretls-dev libevent-dev
15 cf5cf697 2023-06-13 op - ./configure CFLAGS='-O2 -pipe -Wno-deprecated-declarations' -Werror
16 568419b2 2021-10-04 op - make
17 5a345722 2023-06-23 op - make regress REGRESS_HOST="*"
18 568419b2 2021-10-04 op
19 568419b2 2021-10-04 op freebsd_13_task:
20 568419b2 2021-10-04 op freebsd_instance:
21 568419b2 2021-10-04 op image_family: freebsd-13-0
22 568419b2 2021-10-04 op test_script:
23 568419b2 2021-10-04 op - pkg install -y libevent libressl pkgconf
24 cf5cf697 2023-06-13 op - ./configure CFLAGS='-O2 -pipe -Wno-deprecated-declarations' -Werror
25 568419b2 2021-10-04 op - make
26 568419b2 2021-10-04 op - make regress
27 d6d9f9b2 2023-06-13 op
28 d6d9f9b2 2023-06-13 op mac_task:
29 d6d9f9b2 2023-06-13 op macos_instance:
30 d6d9f9b2 2023-06-13 op image: ghcr.io/cirruslabs/macos-ventura-xcode:latest
31 d6d9f9b2 2023-06-13 op test_script:
32 2c0716fd 2023-06-23 op - brew install libevent openssl libretls
33 2c0716fd 2023-06-23 op - PKG_CONFIG_PATH="$(brew --prefix openssl)/lib/pkgconfig" ./configure CFLAGS='-O2 -pipe -Wno-deprecated-declarations' -Werror
34 d6d9f9b2 2023-06-13 op - make
35 d6d9f9b2 2023-06-13 op - SKIP_RUNTIME_TESTS=1 make regress