Ray
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
26 additions and
0 deletions
-
.github/workflows/windows_examples.yml
|
|
@ -0,0 +1,26 @@ |
|
|
|
name: Windows Examples |
|
|
|
|
|
|
|
on: |
|
|
|
push: |
|
|
|
pull_request: |
|
|
|
branches: [ master ] |
|
|
|
paths: |
|
|
|
- 'examples/**' |
|
|
|
|
|
|
|
jobs: |
|
|
|
build: |
|
|
|
runs-on: windows-latest |
|
|
|
|
|
|
|
steps: |
|
|
|
- uses: actions/checkout@v2 |
|
|
|
|
|
|
|
- name: Add MSBuild to PATH |
|
|
|
uses: microsoft/setup-msbuild@v1 |
|
|
|
|
|
|
|
- name: Build Library (MSVC16) |
|
|
|
run: | |
|
|
|
cd projects/VS2019 |
|
|
|
msbuild.exe raylib.sln /property:Configuration=Release /property:Platform=x86 |
|
|
|
cd ../.. |
|
|
|
shell: cmd |
|
|
|
|