mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-06-13 07:32:23 -07:00
initial pass over builds.yml for auto-running build permutations
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
name: builds
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build-windows:
|
||||
runs-on: windows-2022
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: build (vs 2022)
|
||||
shell: cmd
|
||||
run: |
|
||||
call "C:\Program Files (x86)\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
|
||||
- name: build (vs 2019)
|
||||
shell: cmd
|
||||
run: |
|
||||
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\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
|
||||
- name: build (vs 2017)
|
||||
shell: cmd
|
||||
run: |
|
||||
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\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
|
||||
Reference in New Issue
Block a user