Files
raddebugger/.github/workflows/builds.yml
T

21 lines
584 B
YAML

name: builds
on: [push, pull_request]
jobs:
build-windows-2022:
runs-on: windows-2022
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
build raddbg msvc debug
build raddbg_from_pdb msvc debug
build raddbg_from_dwarf msvc debug
build raddbg clang debug
build raddbg_from_pdb clang debug
build raddbg_from_dwarf clang debug