From b29c3c57e958917f1010752b3f2ae3b19d4395b3 Mon Sep 17 00:00:00 2001 From: richard Date: Mon, 27 Jun 2022 00:02:22 +0100 Subject: [PATCH] attempt arm64 mac build --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9a6317d..7204054 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -77,7 +77,7 @@ jobs: # Version range or exact version of a Python version to use, using SemVer's version range syntax. python-version: ${{ matrix.python-version }} # The target architecture (x86, x64) of the Python interpreter. - architecture: universal2 + architecture: x64 # Runs a set of commands using the runners shell - name: Build raylib @@ -85,7 +85,7 @@ jobs: cd raylib-c mkdir build cd build - cmake CMAKE_OSX_ARCHITECTURES="arm64;x86_64" -DINCLUDE_EVERYTHING=on -DSUPPORT_FILEFORMAT_JPG=on -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release .. + cmake CMAKE_OSX_ARCHITECTURES="arm64" -DINCLUDE_EVERYTHING=on -DSUPPORT_FILEFORMAT_JPG=on -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release .. make -j2 sudo make install - name: Copy extras