Overview
Comment: | GitHub Actions: Add missing GnuTLS on NetBSD |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
9006b9d6fde039a2a73c021f9501c0d3 |
User & Date: | js on 2023-04-16 13:43:38 |
Other Links: | manifest | tags |
Context
2023-04-16
| ||
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 | |
13:42 | utils/ofatalkcfg: Add support for showing config check-in: be9bad7ce0 user: js tags: trunk | |
Changes
Modified .github/workflows/netbsd-gcc.yml from [da44403819] to [e4fed4d651].
︙ | ︙ | |||
24 25 26 27 28 29 30 | steps: - uses: actions/checkout@v3 - uses: vmactions/netbsd-vm@v0 with: usesh: true copyback: false prepare: | | | | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | steps: - uses: actions/checkout@v3 - uses: vmactions/netbsd-vm@v0 with: usesh: true copyback: false prepare: | /usr/sbin/pkg_add autoconf automake gnutls run: | ./autogen.sh ./configure OBJC=gcc ${{ matrix.configure_flags }} make -j4 make check make install |
Modified .github/workflows/netbsd.yml from [021d58e5b5] to [0c1ad4293a].
︙ | ︙ | |||
24 25 26 27 28 29 30 | steps: - uses: actions/checkout@v3 - uses: vmactions/netbsd-vm@v0 with: usesh: true copyback: false prepare: | | | | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | steps: - uses: actions/checkout@v3 - uses: vmactions/netbsd-vm@v0 with: usesh: true copyback: false prepare: | /usr/sbin/pkg_add autoconf automake clang gnutls run: | ./autogen.sh ./configure OBJC=clang ${{ matrix.configure_flags }} make -j4 make check make install |