RetroShell can now display a diff of the current config and the defau… #1186
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-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}} | |