From 08705185989c68ffe554acbcc496af3334085511 Mon Sep 17 00:00:00 2001 From: nirenjan Date: Sat, 21 Jan 2023 02:49:45 -0800 Subject: [PATCH] Disable builds on macOS 12 macOS 12 builds are currently failing with the following error: ld: warning: -undefined dynamic_lookup may not work with chained fixups This is causing the overall CI to fail, therefore, I am disabling it until such time that this can be fixed. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2d22448..52eb056 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,7 @@ jobs: strategy: matrix: - os: ['ubuntu-20.04', 'ubuntu-22.04', 'macos-11', 'macos-12'] + os: ['ubuntu-20.04', 'ubuntu-22.04', 'macos-11'] cc: ['gcc', 'clang'] steps: