switch local dev debugger to using local user/profile files, to expli… #82
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: builds | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
jobs: | |
build-windows-2022: | |
runs-on: windows-2022 | |
strategy: | |
fail-fast: false | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: build (vs 2022) | |
shell: cmd | |
run: | | |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64 | |
call build raddbg msvc debug | |
call build raddbg_from_pdb msvc debug | |
call build raddbg_from_dwarf msvc debug | |
call build raddbg clang debug | |
call build raddbg_from_pdb clang debug | |
call build raddbg_from_dwarf clang debug |