From 48c3acd3aaf1e3dc02b37bd7c73352d08e6b47f1 Mon Sep 17 00:00:00 2001 From: Ryan Date: Sat, 27 Mar 2021 09:31:10 -0400 Subject: [PATCH] actions: disable MacOS The LTO change broke this somehow, but disable until I can investigate why --- .github/workflows/ci.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8adbf8741..d06e8e2c2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,18 +38,18 @@ jobs: buildtype: release, args: '' } - - { - name: macOS Debug, - os: macos-latest, - buildtype: debugoptimized, - args: -Ddefault_library=static - } - - { - name: macOS Release, - os: macos-latest, - buildtype: release, - args: -Ddefault_library=static - } + #- { + # name: macOS Debug, + # os: macos-latest, + # buildtype: debugoptimized, + # args: -Ddefault_library=static + #} + #- { + # name: macOS Release, + # os: macos-latest, + # buildtype: release, + # args: -Ddefault_library=static + #} steps: - uses: actions/checkout@v2