ObjFW  Check-in [5ca31b70aa]

Overview
Comment:GitHub Actions: Add missing pkgconf on NetBSD
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 5ca31b70aa51b1c7cf6486e6d5c02a24e35ad6df35dbdc22de79275b6a044b19
User & Date: js on 2023-04-16 16:55:49
Other Links: manifest | tags
Context
2023-04-16
17:13
GitHub Actions: Add missing pkgconf on FreeBSD check-in: fed82bf9db user: js tags: trunk
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
Changes

Modified .github/workflows/netbsd-gcc.yml from [e4fed4d651] to [48d679c7e3].

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







|






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: |
          pkg_add autoconf automake gnutls pkgconf
        run: |
          ./autogen.sh
          ./configure OBJC=gcc ${{ matrix.configure_flags }}
          make -j4
          make check
          make install

Modified .github/workflows/netbsd.yml from [0c1ad4293a] to [63f7b46ea8].

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







|






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: |
          pkg_add autoconf automake clang gnutls pkgconf
        run: |
          ./autogen.sh
          ./configure OBJC=clang ${{ matrix.configure_flags }}
          make -j4
          make check
          make install