From 2bedbdf699e9d3bf990c3066425a88146c01cda3 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Thu, 1 Oct 2020 09:57:20 +0100 Subject: [PATCH] Add VS2019 configuration to Github CI --- .github/workflows/main.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index bd682e29..08bb70fc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -128,3 +128,18 @@ jobs: - name: Run tests run: ./test/etl_tests + build-windows-vs2019: + name: Windows VS2019 Debug + runs-on: [windows-latest] + + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + submodules: recursive + + - name: Build + run: "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\MSBuild.exe" test/vs2019/etl.sln /p:Configuration=Debug /p:Platform=x86 + + - name: Run tests + run: ./test/etl_tests