From 6e649f98ba4a95713b0c0b09272ff2591dbcb0c5 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Sun, 16 Aug 2020 19:55:16 +0100 Subject: [PATCH] Github actions for MSVC --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c96dd05c..088d1ba1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,8 +18,8 @@ jobs: - name: Build and run run: | cmake -DBUILD_TESTS=ON ./ - MSBuild etl.sln /property:Configuration=Debug /property:Platform="x86" - ./etl.exe + MSBuild etl.sln /property:Configuration=Debug /property:Platform="Any CPU" + Debug/etl.exe build-visual-studio-no-stl: runs-on: windows-latest @@ -32,5 +32,5 @@ jobs: - name: Build and run run: | cmake -DBUILD_TESTS=ON ./ - MSBuild etl.sln /property:Configuration=DebugNoSTL /property:Platform="x86" - ./etl.exe + MSBuild etl.sln /property:Configuration=DebugNoSTL /property:Platform="Any CPU" + DebugNoSTL/etl.exe