From d2fd6654eba42c764833a705463f751167637809 Mon Sep 17 00:00:00 2001 From: "Enrico Fraccaroli (Galfurian)" Date: Thu, 30 Nov 2023 12:53:16 -0500 Subject: [PATCH] Try to fix compilation under MacOS --- .github/workflows/macos.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 58c6bd4..759e127 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -23,7 +23,7 @@ jobs: uses: actions/checkout@v3 - name: Install dependencies run: | - brew install git cmake nasm + brew install nasm - name: Build env: CC: gcc-11 @@ -31,4 +31,4 @@ jobs: CXX: g++-11 run: | cmake -DCMAKE_ASM_COMPILER=/usr/local/bin/nasm -B build - cmake --build build --parallel 2 + cmake --build build --parallel 2 --verbose