From c9944d23ccd5abc73adfd761eea7467decb4ce0b Mon Sep 17 00:00:00 2001 From: Ryan Fleury Date: Sat, 20 Jan 2024 09:06:21 -0800 Subject: [PATCH] initial pass over builds.yml for auto-running build permutations --- .github/workflows/builds.yml | 40 ++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/builds.yml diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml new file mode 100644 index 00000000..a7d5e296 --- /dev/null +++ b/.github/workflows/builds.yml @@ -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