Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
JustDoom authored Mar 22, 2024
1 parent cc702e8 commit 279c29b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions/checkout@v2

- name: Install dependencies
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update && sudo apt-get install -y cmake libsfml-dev
Expand All @@ -27,6 +27,11 @@ jobs:
run: |
choco install cmake sfml -y
- name: Install dependencies
if: matrix.os == 'macos-latest'
run: |
brew update && brew install cmake sfml
- name: Configure and build
run: |
mkdir build && cd build
Expand Down

0 comments on commit 279c29b

Please sign in to comment.