From dacddc41e5b8fe8ad01b9a62daa98d3f26e4db2d Mon Sep 17 00:00:00 2001 From: zzyyyl Date: Sat, 17 Aug 2024 01:41:32 +0800 Subject: [PATCH] =?UTF-8?q?Revert=20"feat:=20ci=20=E5=9C=A8=20macOS=20?= =?UTF-8?q?=E4=B8=8A=E4=BD=BF=E7=94=A8=20clang=2018.1.8=20(#10254)"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 4b50dc4ae84a4497b50f771559594686e88190a9. --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 55d051b074..c06a78328f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -308,7 +308,7 @@ jobs: - name: Install Dependencies run: | - brew install ninja llvm@18 + brew install ninja - name: Bootstrap MaaDeps run: | @@ -319,9 +319,7 @@ jobs: - name: Configure MaaCore run: | - cmake -B build -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES='${{ matrix.arch }}' -DMAA_VERSION='${{ needs.meta.outputs.tag }}' \ - -DCMAKE_C_COMPILER=/opt/homebrew/opt/llvm@18/bin/clang \ - -DCMAKE_CXX_COMPILER=/opt/homebrew/opt/llvm@18/bin/clang++ + cmake -B build -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES='${{ matrix.arch }}' -DMAA_VERSION='${{ needs.meta.outputs.tag }}' - name: Build MaaCore run: |