Fixed bug in updateClockFrequency() (Drives did not work with OPT_SPE… #364
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: CMake with MinGW | |
on: | |
push: | |
pull_request: | |
branches: [ master, dev, v5.0 ] | |
#env: | |
# BUILD_TYPE: Release | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
include: | |
- { sys: mingw32, env: i686, build: Release } | |
- { sys: mingw32, env: i686, build: Debug } | |
- { sys: mingw64, env: x86_64, build: Release } | |
- { sys: mingw64, env: x86_64, build: Debug } | |
name: ${ matrix.sys }} | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: '${{ matrix.icon }} Configure MSYS2' | |
uses: msys2/setup-msys2@v2 | |
with: | |
msystem: ${{matrix.sys}} | |
update: true | |
install: >- | |
git | |
make | |
mingw-w64-${{matrix.env}}-toolchain | |
mingw-w64-${{matrix.env}}-cmake | |
mingw-w64-${{matrix.env}}-ninja | |
- name: Build | |
working-directory: ./Emulator | |
run: | | |
cmake -G Ninja -B build -DCMAKE_BUILD_TYPE=${{matrix.build}} | |
cmake --build build --config ${{matrix.build}} | |
#- name: Test | |
# working-directory: ${{github.workspace}}/build | |
# run: ctest --verbose -C ${{matrix.build}} |