Skip to content

RetroShell command processing is done in the RetroShell class (again) #1217

RetroShell command processing is done in the RetroShell class (again)

RetroShell command processing is done in the RetroShell class (again) #1217

name: CMake-MSVC-Debug
on:
push:
pull_request:
schedule:
- cron: '40 5 * * *'
env:
BUILD_TYPE: Debug
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Configure CMake
working-directory: ./Emulator
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
working-directory: ./Emulator
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
# - name: Test
# working-directory: ${{github.workspace}}/build
# run: ctest --verbose -C ${{env.BUILD_TYPE}}