ObjFW  Check-in [1f3034f11c]

Overview
Comment:Add NetBSD to GitHub Actions
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 1f3034f11cd9d2deecca845b8068ed6259f2550887e856bb723116837aadef4a
User & Date: js on 2023-04-16 13:08:03
Other Links: manifest | tags
Context
2023-04-16
13:11
Add GCC on NetBSD to GitHub Actions check-in: 8cb5b89234 user: js tags: trunk
13:08
Add NetBSD to GitHub Actions check-in: 1f3034f11c user: js tags: trunk
06:21
OFDDPSocket: Fix removing configuration on NetBSD check-in: 22fab9e495 user: js tags: trunk
Changes

Added .github/workflows/netbsd.yml version [f304a3b4c2].











































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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: netbsd
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/netbsd-vm@v0
      with:
        usesh: true
        copyback: false
        prepare: |
          /usr/sbin/pkg_add autoconf automake clang
        run: |
          ./autogen.sh
          ./configure ${{ matrix.configure_flags }}
          make -j$(sysctl -n machdep.cpu.thread_count)
          make check
          make install