ObjFW  Check-in [fed82bf9db]

Overview
Comment:GitHub Actions: Add missing pkgconf on FreeBSD
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: fed82bf9db40d343d4c413ce94c62a2b6b36b4dc176ebcba8501a0bb14ae5973
User & Date: js on 2023-04-16 17:13:29
Other Links: manifest | tags
Context
2023-04-16
17:19
autogen.sh: Use autoconf 2.71 on OpenBSD check-in: 1fb13611f7 user: js tags: trunk
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
Changes

Modified .github/workflows/freebsd.yml from [bdb1dc756e] to [db6a8add24].

24
25
26
27
28
29
30
31
32
33
34
35
36
37
    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







|






24
25
26
27
28
29
30
31
32
33
34
35
36
37
    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