aboutsummaryrefslogtreecommitdiff
path: root/deps/raylib/.github/workflows/windows_examples.yml
blob: 6171d6dd98aff4c9e955f03e36ad6439eaddd028 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Windows Examples

on:
  workflow_dispatch:
  push:
    paths:
      - 'src/**'
      - 'examples/**'
      - '.github/workflows/windows_examples.yml'
  pull_request:
    branches: [ master ]
    paths:
      - 'src/**'
      - 'examples/**'
      - '.github/workflows/windows_examples.yml'
    
permissions:
  contents: read

jobs:
  build:
    runs-on: windows-latest

    steps:
    - uses: actions/checkout@v4

    - 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