fix: Disable macos-12 builds

macos-12 builds fail with the following error message:

    ld: warning: -undefined dynamic_lookup may not work with chained fixups

This causes the overall build status to be marked as fail, even though
macOS builds are not treated as failing the build. Also, macOS 12 is
going to effectively be end-of-lifed in November 2024, so it's not worth
spending the time to look into this.
fix-macos-14-builds
nirenjan 2024-06-08 20:57:53 -07:00
parent 7a56af032b
commit 50a911160f
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu-20.04', 'ubuntu-22.04', 'ubuntu-22.04', 'macos-12', 'macos-13', 'macos-14']
os: ['ubuntu-20.04', 'ubuntu-22.04', 'ubuntu-22.04', 'macos-13', 'macos-14']
cc: ['gcc', 'clang']
steps: