ObjFW  Check-in [799dbd0e16]

Overview
Comment:GitHub Actions: Replace macos-latest with macos-12

macos-latest used to be macos-12, but now it is macos-14, which we
already have. It's better to just use version numbers to prevent this
happening again in the future.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 799dbd0e161a77113cdce176d24d90695febedeb7ffa27f8f48619726b6c1300
User & Date: js on 2024-04-27 01:55:39
Other Links: manifest | tags
Context
2024-04-28
08:36
Use @synchronized over OFMutex in a few places check-in: ff3a60cc12 user: js tags: trunk
2024-04-27
01:56
GitHub Actions: Replace macos-latest with macos-12 check-in: c663f94788 user: js tags: 1.1
01:55
GitHub Actions: Replace macos-latest with macos-12 check-in: 799dbd0e16 user: js tags: trunk
2024-04-24
22:52
Add SerenityOS to platform.h check-in: 4853f41b75 user: js tags: trunk
Changes

Renamed and modified .github/workflows/macos-latest.yml [2ffa2189c3] to .github/workflows/macos-12.yml [ee9ffcacad].

1
2
3
4
5
6
7
8
9
10
11
12
name: macos-latest
on: [push, pull_request]
jobs:
  tests:
    runs-on: macos-latest
    strategy:
      matrix:
        configure_flags:
          - 
          - --disable-threads
          - --disable-threads --disable-sockets
          - --disable-threads --disable-files
|



|







1
2
3
4
5
6
7
8
9
10
11
12
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