ADDED .github/workflows/dragonflybsd.yml Index: .github/workflows/dragonflybsd.yml ================================================================== --- .github/workflows/dragonflybsd.yml +++ .github/workflows/dragonflybsd.yml @@ -0,0 +1,25 @@ +name: dragonflybsd +on: [push, pull_request] +jobs: + tests: + runs-on: ubuntu-latest + strategy: + matrix: + configure_flags: + - + - --disable-shared + - --with-tls=gnutls + steps: + - uses: actions/checkout@v4 + - uses: vmactions/dragonflybsd-vm@v1 + with: + usesh: true + copyback: false + prepare: | + pkg install -y autoconf automake gnutls llvm pkgconf + run: | + ./autogen.sh + ./configure OBJC=clang ${{ matrix.configure_flags }} + make -j4 + make check + make install ADDED .github/workflows/freebsd.yml Index: .github/workflows/freebsd.yml ================================================================== --- .github/workflows/freebsd.yml +++ .github/workflows/freebsd.yml @@ -0,0 +1,25 @@ +name: freebsd +on: [push, pull_request] +jobs: + tests: + runs-on: ubuntu-latest + strategy: + matrix: + configure_flags: + - + - --disable-shared + - --with-tls=gnutls + steps: + - uses: actions/checkout@v4 + - uses: vmactions/freebsd-vm@v1 + with: + usesh: true + copyback: false + prepare: | + pkg install -y autoconf automake gnutls pkgconf + run: | + ./autogen.sh + ./configure OBJC=clang ${{ matrix.configure_flags }} + make -j4 + make check + make install ADDED .github/workflows/netbsd-gcc.yml Index: .github/workflows/netbsd-gcc.yml ================================================================== --- .github/workflows/netbsd-gcc.yml +++ .github/workflows/netbsd-gcc.yml @@ -0,0 +1,25 @@ +name: netbsd-gcc +on: [push, pull_request] +jobs: + tests: + runs-on: ubuntu-latest + strategy: + matrix: + configure_flags: + - + - --disable-shared + - --with-tls=gnutls + steps: + - uses: actions/checkout@v4 + - uses: vmactions/netbsd-vm@v1 + with: + usesh: true + copyback: false + prepare: | + /usr/sbin/pkg_add autoconf automake gnutls pkgconf + run: | + ./autogen.sh + ./configure OBJC=gcc ${{ matrix.configure_flags }} + make -j4 + make check + make install ADDED .github/workflows/netbsd.yml Index: .github/workflows/netbsd.yml ================================================================== --- .github/workflows/netbsd.yml +++ .github/workflows/netbsd.yml @@ -0,0 +1,25 @@ +name: netbsd +on: [push, pull_request] +jobs: + tests: + runs-on: ubuntu-latest + strategy: + matrix: + configure_flags: + - + - --disable-shared + - --with-tls=gnutls + steps: + - uses: actions/checkout@v4 + - uses: vmactions/netbsd-vm@v1 + with: + usesh: true + copyback: false + prepare: | + /usr/sbin/pkg_add autoconf automake clang gnutls pkgconf + run: | + ./autogen.sh + ./configure OBJC=clang ${{ matrix.configure_flags }} + make -j4 + make check + make install ADDED .github/workflows/openbsd.yml Index: .github/workflows/openbsd.yml ================================================================== --- .github/workflows/openbsd.yml +++ .github/workflows/openbsd.yml @@ -0,0 +1,25 @@ +name: openbsd +on: [push, pull_request] +jobs: + tests: + runs-on: ubuntu-latest + strategy: + matrix: + configure_flags: + - + - --disable-shared + - --with-tls=gnutls + steps: + - uses: actions/checkout@v4 + - uses: vmactions/openbsd-vm@v1 + with: + usesh: true + copyback: false + prepare: | + pkg_add autoconf-2.71 automake-1.16.5 gnutls pkgconf + run: | + ./autogen.sh + ./configure OBJC=clang ${{ matrix.configure_flags }} + make -j4 + make check + make install