ObjFW  Check-in [df271d3182]

Overview
Comment:GitHub Actions: Remove macOS 12

It's being deprecated.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 1.2
Files: files | file ages | folders
SHA3-256: df271d3182c1261e8963b8db2e6aed60f50e045f4458c9386979e6e0683a39b0
User & Date: js on 2024-11-18 23:28:07
Other Links: branch diff | manifest | tags
Context
2024-11-18
23:33
OFTLSStream: Ensure shutdown is sent with OpenSSL check-in: 957527d55e user: js tags: 1.2
23:28
GitHub Actions: Remove macOS 12 check-in: df271d3182 user: js tags: 1.2
23:27
GitHub Actions: Remove macOS 12 check-in: 440797fc87 user: js tags: trunk
21:18
OFINIFile: Properly quote ; and # check-in: 750e870490 user: js tags: 1.2
Changes

Deleted .github/workflows/macos-12.yml version [2410a0204f].

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