From 646f95505ae4159a9f59edf9f42a8a67e4849a13 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Thu, 1 Oct 2020 10:16:52 +0100 Subject: [PATCH] Add VS2019 configuration to Github CI --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8dd02c9e..6919ab6d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,8 +16,11 @@ jobs: with: submodules: recursive + - name: Add msbuild to PATH + uses: microsoft/setup-msbuild@v1.0.1 + - 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" + run: MSBuild.exe test/vs2019/etl.sln /p:Configuration=Debug /p:Platform=x86 - name: Run tests run: ./test/etl_tests