Skip to content

Commit

Permalink
fix: Fix CMake issues with MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePythonator committed Jul 27, 2024
1 parent d54275d commit 9bc9656
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9bc9656

Please sign in to comment.