ObjFW  Check-in [2ff3caeaab]

Overview
Comment:GitHub Actions: Change macos-12 to macos-latest
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 2ff3caeaabefa4dedb714fe605ea30673a542b9f64b8a9d9a8b9c1db2f2bc479
User & Date: js on 2024-03-17 14:28:48
Other Links: manifest | tags
Context
2024-03-17
14:38
GitHub Actions: Change macos-12 to macos-latest check-in: da98b495f8 user: js tags: 1.0
14:29
GitHub Actions: Add macos-14 check-in: b6f77c627a user: js tags: trunk
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: 86e7ac0d52 user: js tags: trunk
Changes

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

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