Skip to content

Commit ad04d35

Browse files
authored
👷 Remove deprecated MacOS-13 runner (#8)
1 parent 0c692b6 commit ad04d35

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

.github/workflows/compiler-support.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
- { tag: "ubuntu-2204_gcc-11", name: "Ubuntu 22.04 G++ 11", cxx: "/usr/bin/g++-11", cc: "/usr/bin/gcc-11", runs-on: "ubuntu-22.04" }
2525
- { tag: "windows-2025_msvc17", name: "Windows Server 2025 MSVC 17", cxx: "", cc: "", runs-on: "windows-2025" }
2626
- { tag: "windows-2022_msvc17", name: "Windows Server 2022 MSVC 17", cxx: "", cc: "", runs-on: "windows-2022" }
27-
- { tag: "macos-13_clang-15", name: "MacOS 13 Clang 15", cxx: "/usr/local/Cellar/llvm@15//15.0.7/bin/clang++", cc: "/usr/local/Cellar/llvm@15//15.0.7/bin/clang", runs-on: "macos-13" }
2827
- { tag: "macos-14-arm_clang-15", name: "MacOS 14 (Arm64) Clang 15", cxx: "/opt/homebrew/opt/llvm@15/bin/clang++", cc: "/opt/homebrew/opt/llvm@15/bin/clang", runs-on: "macos-14" }
2928
- { tag: "macos-15-arm_clang-18", name: "MacOS 15 (Arm64) Clang 18", cxx: "/opt/homebrew/opt/llvm@18/bin/clang++", cc: "/opt/homebrew/opt/llvm@18/bin/clang", runs-on: "macos-15" }
3029
# x64 MacOS is payed only for >= 14
@@ -50,7 +49,6 @@ jobs:
5049
ubuntu-2204_gcc-11: ${{ steps.status.outputs.ubuntu-2204_gcc-11 }}
5150
windows-2025_msvc17: ${{ steps.status.outputs.windows-2025_msvc17 }}
5251
windows-2022_msvc17: ${{ steps.status.outputs.windows-2022_msvc17 }}
53-
macos-13_clang-15: ${{ steps.status.outputs.macos-13_clang-15 }}
5452
macos-14-arm_clang-15: ${{ steps.status.outputs.macos-14-arm_clang-15 }}
5553
macos-15-arm_clang-18: ${{ steps.status.outputs.macos-15-arm_clang-18 }}
5654
macos-14_clang-15: ${{ steps.status.outputs.macos-14_clang-15 }}
@@ -62,7 +60,7 @@ jobs:
6260
- name: Checkout repository
6361
uses: actions/checkout@v3
6462
- name: Set LDFLAGS=-Wl,-ld_classic
65-
if: contains(matrix.compiler.tag, 'macos-13') || contains(matrix.compiler.tag, 'macos-14')
63+
if: contains(matrix.compiler.tag, 'macos-14')
6664
run: echo "LDFLAGS=-Wl,-ld_classic" >> $GITHUB_ENV
6765
# Ubuntu 22.04 container has libstdc++13 installed which is incompatible with clang < 15 in C++20
6866
- name: Uninstall libstdc++-13-dev

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Tested and supported compilers:
2121
|-----------------------------------------------------------------------|---------------------------------------------------------------------|--------------------------------------------------------------------------|
2222
| [![ubuntu-2404_clang-16][img_ubuntu-2404_clang-16]][Compiler-Support] | [![windows-2025_msvc17][img_windows-2025_msvc17]][Compiler-Support] | [![macos-15-arm_clang-18][img_macos-15-arm_clang-18]][Compiler-Support] |
2323
| [![ubuntu-2404_clang-17][img_ubuntu-2404_clang-17]][Compiler-Support] | [![windows-2022_msvc17][img_windows-2022_msvc17]][Compiler-Support] | [![macos-14-arm_clang-15][img_macos-14-arm_clang-15]][Compiler-Support] |
24-
| [![ubuntu-2404_clang-18][img_ubuntu-2404_clang-18]][Compiler-Support] | | [![macos-13_clang-15][img_macos-13_clang-15]][Compiler-Support] | |
24+
| [![ubuntu-2404_clang-18][img_ubuntu-2404_clang-18]][Compiler-Support] | | | |
2525
| [![ubuntu-2404_gcc-12][img_ubuntu-2404_gcc-12]][Compiler-Support] | | |
2626
| [![ubuntu-2404_gcc-13][img_ubuntu-2404_gcc-13]][Compiler-Support] | | |
2727
| [![ubuntu-2404_gcc-14][img_ubuntu-2404_gcc-14]][Compiler-Support] | | |
@@ -47,5 +47,4 @@ Tested and supported compilers:
4747
[img_windows-2022_msvc17]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/asyncpp/asyncpp-io/badges/compiler/windows-2022_msvc17/shields.json
4848
[img_macos-15-arm_clang-18]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/asyncpp/asyncpp-io/badges/compiler/macos-15-arm_clang-18/shields.json
4949
[img_macos-14-arm_clang-15]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/asyncpp/asyncpp-io/badges/compiler/macos-14-arm_clang-15/shields.json
50-
[img_macos-13_clang-15]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/asyncpp/asyncpp-io/badges/compiler/macos-13_clang-15/shields.json
5150
[Compiler-Support]: https://github.com/asyncpp/asyncpp-io/actions/workflows/compiler-support.yml

0 commit comments

Comments
 (0)