ObjFW  Check-in [a96ea5c067]

Overview
Comment:GitHub Actions: Remove macOS 11

It's dead.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 1.1
Files: files | file ages | folders
SHA3-256: a96ea5c067ffcbf9645a5bf714834ef96fd8f30fa909d7a5cd546b8bdd5c5b2b
User & Date: js on 2024-07-04 18:47:19
Other Links: branch diff | manifest | tags
Context
2024-07-06
10:47
Update ChangeLog for 1.1.5 check-in: 6be5c5ec0c user: js tags: 1.1
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
2024-06-23
22:05
runtime: Properly hide symbols check-in: 0309533ff6 user: js tags: 1.1
Changes

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

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
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<