ObjFW  Check-in [a70d0cd44f]

Overview
Comment:GitHub Actions: Remove macOS 11

It's dead.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: a70d0cd44f686672dd163ce1c77641a4cf979ed32d9dd460bfaafd396aac7c98
User & Date: js on 2024-07-04 18:47:08
Other Links: manifest | tags
Context
2024-07-06
10:48
Update ChangeLog for 1.1.5 check-in: 965a8ad9be user: js tags: trunk
2024-07-04
18:47
GitHub Actions: Remove macOS 11 check-in: a96ea5c067 user: js tags: 1.1
18:47
GitHub Actions: Remove macOS 11 check-in: a70d0cd44f user: js tags: trunk
18:45
Make conformance to OHEvdevMapping private check-in: 146b11b201 user: js tags: trunk
Changes

Deleted .github/workflows/macos-11.yml version [96eee8201b].

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-11
on: [push, pull_request]
jobs:
  tests:
    runs-on: macos-11
    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
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<