[CI] Use latest premake5 as 5.0-beta2 doesn't handle `buildAction "Co… #191
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: macos | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- 'resinstaller/src/**' | |
- 'src/**' | |
- 'submodules/**' | |
- 'test/**' | |
- '.github/workflows/macos.yml' | |
- 'CMakeLists.txt' | |
- 'mk/cmake/**' | |
pull_request: | |
paths: | |
- 'resinstaller/src/**' | |
- 'src/**' | |
- 'submodules/**' | |
- 'test/**' | |
- '.github/workflows/macos.yml' | |
- 'CMakeLists.txt' | |
- 'mk/cmake/**' | |
jobs: | |
macos: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: install dependencies | |
run: brew install sdl2 sdl2_mixer sdl2_net libogg libvorbis | |
- name: cmake --version | |
run: cmake --version | |
- name: test projects | |
run: | | |
mkdir build && cd build | |
cmake .. -DBUILD_TESTING=1 | |
make maxr_dedicatedserver maxr maxr_tests resinstaller -j4 | |
ctest | |
./maxr_tests | |