git subrepo pull (merge) --force deps/libchdr
[pcsx_rearmed.git] / deps / libchdr / .github / workflows / cmake.yml
CommitLineData
9e052883 1name: CMake
2
3on: [push, pull_request]
4
5jobs:
6 build:
7 runs-on: ${{ matrix.os }}
8 strategy:
9 matrix:
10 os: [macos-latest, ubuntu-latest, windows-latest]
11
12 steps:
648db22b 13 - uses: actions/checkout@v4
9e052883 14
15 - name: Configure CMake
16 run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release
17
18 - name: Build
19 run: cmake --build ${{github.workspace}}/build --config Release