From f6ffd603507a42c76d6388928ca6d81835f5e684 Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Fri, 6 Sep 2024 02:44:51 -0700 Subject: [PATCH] ci: use the default C compiler on Apple --- .github/workflows/CI.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index dd7b0d9..9cfd762 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -46,12 +46,20 @@ jobs: # Setup compilers and tools - name: Setup Cpp + if: ${{ !contains(matrix.os, 'macos') }} uses: aminya/setup-cpp@v1 with: compiler: ${{ matrix.compiler }} cmake: true ninja: true + - name: Setup Cpp + if: ${{ contains(matrix.os, 'macos') }} + uses: aminya/setup-cpp@v1 + with: + cmake: true + ninja: true + - name: Setup D uses: dlang-community/setup-dlang@v1 with: