Frontend.Console: fix crash related to SharpRaven #2756
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: windows | |
on: [push] | |
jobs: | |
windows_build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Run a one-line script | |
shell: cmd | |
run: configure.bat && make.bat sanitycheck && make.bat strict && make.bat release | |
windows_tests_unit: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Run a one-line script | |
shell: cmd | |
run: configure.bat && make.bat && make.bat check | |
windows_tests_integration: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Run a one-line script | |
shell: cmd | |
run: configure.bat && make.bat && make.bat update-servers |