ObjFW  Check-in [076889bd2e]

Overview
Comment:GitHub Actions: Fix wrong pkg for clang on DFBSD
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 076889bd2effb9b900e984a1e2c7ec6095413ee52b7fd59740591e26ce905409
User & Date: js on 2023-04-16 22:44:00
Other Links: manifest | tags
Context
2023-04-17
11:56
Always make DNS names lowercase check-in: ce2b268163 user: js tags: trunk
2023-04-16
22:44
GitHub Actions: Fix wrong pkg for clang on DFBSD check-in: 076889bd2e user: js tags: trunk
21:44
Work around s_net already being defined on Solaris check-in: 9af6b18d87 user: js tags: trunk
Changes

Modified .github/workflows/dragonflybsd.yml from [26788664e1] to [45c9eaf2c1].

24
25
26
27
28
29
30
31
32
33
34
35
36
37
    steps:
    - uses: actions/checkout@v3
    - uses: vmactions/dragonflybsd-vm@v0
      with:
        usesh: true
        copyback: false
        prepare: |
          pkg install -y autoconf automake clang gnutls pkgconf
        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/dragonflybsd-vm@v0
      with:
        usesh: true
        copyback: false
        prepare: |
          pkg install -y autoconf automake gnutls llvm pkgconf
        run: |
          ./autogen.sh
          ./configure OBJC=clang ${{ matrix.configure_flags }}
          make -j4
          make check
          make install