ObjFW  Check-in [da98b495f8]

Overview
Comment:GitHub Actions: Change macos-12 to macos-latest
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 1.0
Files: files | file ages | folders
SHA3-256: da98b495f873c001be4c6a4347c844c9df974574e61a0d46dd21396c2438d5ef
User & Date: js on 2024-03-17 14:38:10
Other Links: branch diff | manifest | tags
Context
2024-03-17
14:38
GitHub Actions: Add macos-14 check-in: 4e703f8d32 user: js tags: 1.0
14:38
GitHub Actions: Change macos-12 to macos-latest check-in: da98b495f8 user: js tags: 1.0
14:28
GitHub Actions: Change macos-12 to macos-latest check-in: 2ff3caeaab user: js tags: trunk
14:26
GitHub Actions: Add MSYS2 check-in: 5afe63f938 user: js tags: 1.0
Changes

Renamed and modified .github/workflows/macos-12.yml [a15421158f] to .github/workflows/macos-latest.yml [ccaf442395].

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
|



|







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