From 7aa8a61b133c10848a147cc07384dee2238115dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Kov=C3=A1cs?= Date: Sat, 20 Jan 2024 19:02:01 +0100 Subject: [PATCH] Attempt to add gcc for the Mac build on GitHub Actions --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 90e2066c..75de08da 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -54,6 +54,8 @@ jobs: uses: jurplel/install-qt-action@v3 with: version: '6.2.4' + - name: install-gcc-12 + run: brew install gcc-12 - name: cmake run: mkdir cbuild; cd cbuild; cmake .. - name: make