소스 검색

Create ci_src_examples_win.yml

Ray 5 년 전
부모
커밋
98f4e06a37
1개의 변경된 파일15개의 추가작업 그리고 0개의 파일을 삭제
  1. 15 0
      .github/workflows/ci_src_examples_win.yml

+ 15 - 0
.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/[email protected]
+    - name: Build using CL.EXE
+      run: cd src && make PLATFORM=PLATFORM_DESKTOP
+    - name: make examples
+      run: cd examples && make PLATFORM=PLATFORM_DESKTOP