From 42d84be2c312220a96f341becb039c958582a447 Mon Sep 17 00:00:00 2001 From: "Enrico Fraccaroli (Galfurian)" Date: Thu, 30 Nov 2023 11:35:13 -0500 Subject: [PATCH] Use gcc@11 under MacOS --- .github/workflows/macos.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index aef43f3..df4a194 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -23,11 +23,11 @@ jobs: uses: actions/checkout@v3 - name: Install dependencies run: | - brew install git cmake nasm + brew install nasm - name: Build env: CC: gcc-11 CXX: g++-11 run: | - cmake -B build - cmake --build build --parallel 2 + cmake -DCMAKE_ASM_COMPILER=/usr/local/bin/nasm -B build + cmake --build build --parallel 2 --verbose