ObjFW  Check-in [440797fc87]

Overview
Comment:GitHub Actions: Remove macOS 12

It's being deprecated.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 440797fc874776758326dae530fb60b7ff18a1b5212d3255953b316846a178d8
User & Date: js on 2024-11-18 23:27:54
Other Links: manifest | tags
Context
2024-11-18
23:32
OFTLSStream: Ensure shutdown is sent with OpenSSL Leaf check-in: 6dc94f286a user: js tags: trunk
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: 92d0f0b9d4 user: js tags: trunk
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
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<