Skip to content

Commit

Permalink
fixup!
Browse files Browse the repository at this point in the history
  • Loading branch information
pranaysashank committed Nov 28, 2023
1 parent 0605e40 commit 7b65575
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/build.yml
Expand Up @@ -32,23 +32,22 @@ jobs:
ghc-version: ${{ matrix.ghc }}

- name: Install wxWidgets on Windows
if: matrix.os == "windows-latest"
uses: msys2/setup-msys2@v2
with:
msystem: CLANG64
platform-check-severity: warn
install: >-
mingw-w64-clang-x86_64-clang
mingw-w64-clang-x86_64-wxwidgets3.2-msw
- name: Install wxWidgets on Ubuntu
if: matrix.os == "ubuntu-latest"
- name: Install wxWidgets on Ubuntu / macOS
run: |
apt install -y libwxgtk3.0-gtk3-dev
if [[ "${{ matrix.os }}" == "ubuntu-latest" ]]; then
apt install -y libwxgtk3.0-gtk3-dev
elif [[ "${{ matrix.os }}" == "macos-latest" ]]; then
brew install wxwidgets
fi
- name: Install wxWidgets on macOS
if: matrix.os == "macOS-latest"
run: |
brew install wxwidgets
- name: Configure project
shell: ${{ matrix.shell }}
Expand Down

0 comments on commit 7b65575

Please sign in to comment.