DELETED .github/workflows/dragonflybsd.yml Index: .github/workflows/dragonflybsd.yml ================================================================== --- .github/workflows/dragonflybsd.yml +++ .github/workflows/dragonflybsd.yml @@ -1,25 +0,0 @@ -name: dragonflybsd -on: [push, pull_request] -jobs: - tests: - runs-on: macos-12 - strategy: - matrix: - configure_flags: - - - - --disable-shared - - --with-tls=gnutls - steps: - - uses: actions/checkout@v3 - - uses: vmactions/dragonflybsd-vm@v0 - 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 DELETED .github/workflows/freebsd.yml Index: .github/workflows/freebsd.yml ================================================================== --- .github/workflows/freebsd.yml +++ .github/workflows/freebsd.yml @@ -1,25 +0,0 @@ -name: freebsd -on: [push, pull_request] -jobs: - tests: - runs-on: macos-12 - strategy: - matrix: - configure_flags: - - - - --disable-shared - - --with-tls=gnutls - steps: - - uses: actions/checkout@v3 - - uses: vmactions/freebsd-vm@v0 - 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 DELETED .github/workflows/netbsd-gcc.yml Index: .github/workflows/netbsd-gcc.yml ================================================================== --- .github/workflows/netbsd-gcc.yml +++ .github/workflows/netbsd-gcc.yml @@ -1,25 +0,0 @@ -name: netbsd-gcc -on: [push, pull_request] -jobs: - tests: - runs-on: macos-12 - strategy: - matrix: - configure_flags: - - - - --disable-shared - - --with-tls=gnutls - steps: - - uses: actions/checkout@v3 - - uses: vmactions/netbsd-vm@v0 - with: - usesh: true - copyback: false - prepare: | - pkg_add autoconf automake gnutls pkgconf - run: | - ./autogen.sh - ./configure OBJC=gcc ${{ matrix.configure_flags }} - make -j4 - make check - make install DELETED .github/workflows/netbsd.yml Index: .github/workflows/netbsd.yml ================================================================== --- .github/workflows/netbsd.yml +++ .github/workflows/netbsd.yml @@ -1,25 +0,0 @@ -name: netbsd -on: [push, pull_request] -jobs: - tests: - runs-on: macos-12 - strategy: - matrix: - configure_flags: - - - - --disable-shared - - --with-tls=gnutls - steps: - - uses: actions/checkout@v3 - - uses: vmactions/netbsd-vm@v0 - with: - usesh: true - copyback: false - prepare: | - pkg_add autoconf automake clang gnutls pkgconf - run: | - ./autogen.sh - ./configure OBJC=clang ${{ matrix.configure_flags }} - make -j4 - make check - make install DELETED .github/workflows/openbsd.yml Index: .github/workflows/openbsd.yml ================================================================== --- .github/workflows/openbsd.yml +++ .github/workflows/openbsd.yml @@ -1,25 +0,0 @@ -name: openbsd -on: [push, pull_request] -jobs: - tests: - runs-on: macos-12 - strategy: - matrix: - configure_flags: - - - - --disable-shared - - --with-tls=gnutls - steps: - - uses: actions/checkout@v3 - - uses: vmactions/openbsd-vm@v0 - 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