Overview
Comment: | Add FreeBSD to GitHub Actions |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
e64baf5894d20e522113d8895f5111b3 |
User & Date: | js on 2023-04-16 14:01:19 |
Other Links: | manifest | tags |
Context
2023-04-16
| ||
16:55 | GitHub Actions: Add missing pkgconf on NetBSD check-in: 5ca31b70aa user: js tags: trunk | |
14:01 | Add FreeBSD to GitHub Actions check-in: e64baf5894 user: js tags: trunk | |
13:43 | GitHub Actions: Add missing GnuTLS on NetBSD check-in: 9006b9d6fd user: js tags: trunk | |
Changes
Added .github/workflows/freebsd.yml version [bdb1dc756e].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | name: freebsd on: [push, pull_request] jobs: tests: runs-on: macos-12 strategy: matrix: configure_flags: - - --enable-seluid24 - --disable-compiler-tls - --disable-threads - --disable-threads --disable-sockets - --disable-threads --disable-files - --disable-threads --disable-sockets --disable-files - --disable-sockets - --disable-sockets --disable-files - --disable-files - --disable-shared - --disable-shared --enable-seluid24 - --disable-compiler-tls --disable-threads - --with-tls=gnutls - --with-tls=gnutls --disable-shared steps: - uses: actions/checkout@v3 - uses: vmactions/freebsd-vm@v0 with: usesh: true copyback: false prepare: | pkg install -y autoconf automake gnutls run: | ./autogen.sh ./configure OBJC=clang ${{ matrix.configure_flags }} make -j4 make check make install |