ObjFW  Check-in [c663f94788]

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 | 1.1
Files: files | file ages | folders
SHA3-256: c663f947887c2adbef42441a13c33093f992467b66dd012e6ee87740a211ec9f
User & Date: js on 2024-04-27 01:56:15
Other Links: branch diff | manifest | tags
Context
2024-04-28
11:56
Workaround for OFSubprocessTests on Windows 9x check-in: 7937aed40b user: js tags: 1.1
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-22
00:02
Merge trunk into 1.1 branch check-in: 69075d7082 user: js tags: 1.1
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