ObjFW  Check-in [b6f77c627a]

Overview
Comment:GitHub Actions: Add macos-14
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: b6f77c627aeae1f33c15c1687db7f4165829ee19d95534679a05ff880b8f9459
User & Date: js on 2024-03-17 14:29:32
Other Links: manifest | tags
Context
2024-03-17
15:57
OFSystemInfo: Add +[wineVersion] check-in: f050580b33 user: js tags: trunk
14:38
GitHub Actions: Add macos-14 check-in: 4e703f8d32 user: js tags: 1.0
14:29
GitHub Actions: Add macos-14 check-in: b6f77c627a user: js tags: trunk
14:28
GitHub Actions: Change macos-12 to macos-latest check-in: 2ff3caeaab user: js tags: trunk
Changes

Added .github/workflows/macos-14.yml version [af1606c56d].































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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-14
on: [push, pull_request]
jobs:
  tests:
    runs-on: macos-14
    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@v4
    - 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