From 9bc9656afb2ef6161e38b18777046e43c839d9bf Mon Sep 17 00:00:00 2001 From: ThePythonator <49040244+ThePythonator@users.noreply.github.com> Date: Sat, 27 Jul 2024 22:33:47 +0100 Subject: [PATCH] fix: Fix CMake issues with MacOS --- .github/workflows/build.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ddd8658..9227c9a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -67,25 +67,25 @@ jobs: path: main # Linux dependencies - - name: Install Linux deps - if: runner.os == 'Linux' - run: | - sudo apt update && sudo apt install ${{matrix.apt-packages}} - pip3 install 32blit + #- name: Install Linux deps + # if: runner.os == 'Linux' + # run: | + # sudo apt update && sudo apt install ${{matrix.apt-packages}} + # pip3 install 32blit # MacOS dependencies - - name: Install macOS deps - if: runner.os == 'macOS' - run: | - brew install ${{matrix.brew-packages}} - python3 -m pip install 32blit + #- name: Install macOS deps + # if: runner.os == 'macOS' + # run: | + # brew install ${{matrix.brew-packages}} + # python3 -m pip install 32blit # Windows dependencies - - name: Install Windows deps - if: runner.os == 'Windows' - shell: bash - run: | - python -m pip install 32blit + #- name: Install Windows deps + # if: runner.os == 'Windows' + # shell: bash + # run: | + # python -m pip install 32blit # Emscripten SDK setup - name: Setup Emscripten cache