ObjFW  Check-in [b8c9c362a2]

Overview
Comment:GitHub Actions: Add macOS 13
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: b8c9c362a26c2d92fda2fed6165ab72a368ce71734877d7334dd8b3e16f91661
User & Date: js on 2023-08-28 09:17:23
Other Links: manifest | tags
Context
2023-08-28
14:35
OFINICategory: Better method names check-in: e1d01a4ee6 user: js tags: trunk
09:17
GitHub Actions: Add macOS 13 check-in: b8c9c362a2 user: js tags: trunk
2023-08-27
19:04
Remove hack for amiga-gcc that is no longer needed check-in: 583c007e31 user: js tags: trunk
Changes

Added .github/workflows/macos-13.yml version [d116da75c5].































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
name: macos-13
on: [push, pull_request]
jobs:
  tests:
    runs-on: macos-13
    strategy:
      matrix:
        configure_flags:
          - 
          - --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
    steps:
    - name: Install dependencies
      run: brew install autoconf automake
    - uses: actions/checkout@v2
    - name: autogen.sh
      run: ./autogen.sh
    - name: configure
      run: ./configure ${{ matrix.configure_flags }}
    - name: make
      run: make -j$(sysctl -n hw.logicalcpu)
    - name: make check
      run: make check
    - name: make install
      run: sudo make install