Skip to content

Commit

Permalink
Remove MinGW CI job
Browse files Browse the repository at this point in the history
Removed for the same reason it was removed from SFML. GitHub Actions
switched to a version that expects different C runtime libraries
resulting in linker errors. Let's just remove this job since fixing
it is overkill for a project as simple as this.
  • Loading branch information
ChrisThrasher committed Oct 20, 2023
1 parent efca0dd commit cb8bcf6
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:
platform:
- { name: Windows VS2019, os: windows-2019 }
- { name: Windows VS2022, os: windows-2022 }
- { name: Windows MinGW, os: windows-2022, flags: -GNinja -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ }
- { name: Linux GCC, os: ubuntu-latest }
- { name: Linux Clang, os: ubuntu-latest, flags: -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ }
- { name: macOS, os: macos-latest }
Expand All @@ -22,10 +21,6 @@ jobs:
- { name: Static, flags: -DBUILD_SHARED_LIBS=FALSE }

steps:
- name: Install Window Dependencies
if: runner.os == 'Windows'
run: choco install ninja

- name: Install Linux Dependencies
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt-get install libxrandr-dev libxcursor-dev libudev-dev libopenal-dev libflac-dev libvorbis-dev libgl1-mesa-dev libegl1-mesa-dev
Expand Down

0 comments on commit cb8bcf6

Please sign in to comment.