From 98f4e06a37c98e9a18fd6a75d50bdd916483f8bb Mon Sep 17 00:00:00 2001 From: Ray Date: Thu, 9 Jan 2020 16:06:17 +0100 Subject: [PATCH] Create ci_src_examples_win.yml --- .github/workflows/ci_src_examples_win.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/ci_src_examples_win.yml diff --git a/.github/workflows/ci_src_examples_win.yml b/.github/workflows/ci_src_examples_win.yml new file mode 100644 index 000000000..a3a9cd124 --- /dev/null +++ b/.github/workflows/ci_src_examples_win.yml @@ -0,0 +1,15 @@ +name: CI - Source & Examples - Windows + +on: [push, pull_request, release] + +jobs: + build: + runs-on: windows-latest + steps: + - uses: actions/checkout@v1 + - name: Enable MSVC Developer Command Prompt + uses: ilammy/msvc-dev-cmd@v1.0.0 + - name: Build using CL.EXE + run: cd src && make PLATFORM=PLATFORM_DESKTOP + - name: make examples + run: cd examples && make PLATFORM=PLATFORM_DESKTOP