ObjFW  Check-in [ebb50f7d8f]

Overview
Comment:GitHub Actions: Load SCTP kernel module on FreeBSD
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | trunk
Files: files | file ages | folders
SHA3-256: ebb50f7d8f1a65d9bdc67b1b211cfb634913bbf9991260b3d96d73d09b9b7f03
User & Date: js on 2024-05-05 08:39:05
Other Links: manifest | tags
Context
2024-05-05
08:39
GitHub Actions: Load SCTP kernel module on FreeBSD Leaf check-in: ebb50f7d8f user: js tags: trunk
08:37
Fix OFSCTPSocket on FreeBSD check-in: 580e5ab656 user: js tags: trunk
Changes

Modified .github/workflows/freebsd.yml from [4657fe9002] to [533c8c4dc4].

13
14
15
16
17
18
19

20
21
22
23
24
25
    - uses: actions/checkout@v4
    - uses: vmactions/freebsd-vm@v1
      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







>






13
14
15
16
17
18
19
20
21
22
23
24
25
26
    - uses: actions/checkout@v4
    - uses: vmactions/freebsd-vm@v1
      with:
        usesh: true
        copyback: false
        prepare: |
          pkg install -y autoconf automake gnutls pkgconf
          kldload sctp
        run: |
          ./autogen.sh
          ./configure OBJC=clang ${{ matrix.configure_flags }}
          make -j4
          make check
          make install