From d6e3db0b9f2762318d4accb3f7b04bc8be0a16af Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Tue, 11 Aug 2020 20:00:57 +0100 Subject: [PATCH] Github actions for MSVC --- .github/workflows/main.yml | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e31d6fa0..3ca9d2bc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,7 +1,7 @@ name: CI on: push: - branches: [ feature/github-actions-for-windows-compilers ] + branches: [ master, feature/github-actions-for-windows-compilers ] pull_request: branches: [ master ] @@ -20,8 +20,15 @@ jobs: cmake ./ MSBuild etl.sln - - name: Save artifacts - uses: actions/upload-artifact@v2 - with: - name: Testfile - path: test/etl_tests \ No newline at end of file + build-visual-studio-no-stl: + runs-on: windows-latest + steps: + - uses: actions/checkout@v2 + + - name: Setup MSBuild.exe + uses: warrenbuckley/Setup-MSBuild@v1 + + - name: Build and run + run: | + cmake -DETL_NO_STL ./ + MSBuild etl.sln