ObjFW  Check-in [5545b47d08]

Overview
Comment:Add DragonFly BSD to GitHub Actions
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 5545b47d08ac2c99f925b707c39fdff44fb936fd0840858b222fb77b46c359f5
User & Date: js on 2023-04-16 19:59:34
Other Links: manifest | tags
Context
2023-04-16
21:44
Work around s_net already being defined on Solaris check-in: 9af6b18d87 user: js tags: trunk
19:59
Add DragonFly BSD to GitHub Actions check-in: 5545b47d08 user: js tags: trunk
18:08
GitHub Actions: Temporarily remove devkitPPC check-in: b3f5ab58b7 user: js tags: trunk
Changes

Added .github/workflows/dragonflybsd.yml version [26788664e1].











































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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: dragonflybsd
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/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