Skip to content

Commit

Permalink
CI: added openbsd/arm64 build for better coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
SChernykh committed Feb 16, 2023
1 parent ed59579 commit 75704a7
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ jobs:
name: p2pool-${{ matrix.os }}
path: build/p2pool

build-freebsd:
build-bsd:

timeout-minutes: 75
runs-on: ${{ matrix.os.host }}
Expand All @@ -369,6 +369,13 @@ jobs:
architecture: x86-64
version: '12.4'
host: ubuntu-22.04
install: 'pkg install -y'

- name: openbsd
architecture: arm64
version: '7.2'
host: ubuntu-22.04
install: 'pkg_add -I'

steps:
- name: Checkout repository
Expand All @@ -384,7 +391,7 @@ jobs:
version: ${{ matrix.os.version }}
shell: bash
run: |
sudo pkg install -y cmake autoconf automake libtool
sudo ${{ matrix.os.install }} cmake autoconf automake libtool
cd external/src/curl
autoreconf -fi
./configure CFLAGS='-Os' --without-ssl --without-hyper --without-zlib --without-brotli --without-zstd --without-default-ssl-backend --without-ca-bundle --without-ca-path --without-ca-fallback --without-libpsl --without-libgsasl --without-librtmp --without-winidn --without-libidn2 --without-nghttp2 --without-ngtcp2 --without-nghttp3 --without-quiche --without-msh3 --without-zsh-functions-dir --without-fish-functions-dir --disable-ftp --disable-file --disable-ldap --disable-ldaps --disable-rtsp --disable-dict --disable-telnet --disable-tftp --disable-pop3 --disable-imap --disable-smb --disable-smtp --disable-gopher --disable-mqtt --disable-manual --disable-ntlm --disable-ntlm-wb --disable-tls-srp --disable-unix-sockets --disable-cookies --disable-socketpair --disable-doh --disable-dateparse --disable-netrc --disable-progress-meter --disable-dnsshuffle --disable-hsts --disable-alt-svc --disable-ares
Expand Down

0 comments on commit 75704a7

Please sign in to comment.