You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
688 B

10 months ago
  1. name: Windows Examples
  2. on:
  3. workflow_dispatch:
  4. push:
  5. paths:
  6. - 'src/**'
  7. - 'examples/**'
  8. - '.github/workflows/windows_examples.yml'
  9. pull_request:
  10. branches: [ master ]
  11. paths:
  12. - 'src/**'
  13. - 'examples/**'
  14. - '.github/workflows/windows_examples.yml'
  15. permissions:
  16. contents: read
  17. jobs:
  18. build:
  19. runs-on: windows-latest
  20. steps:
  21. - uses: actions/checkout@v4
  22. - name: Add MSBuild to PATH
  23. uses: microsoft/setup-msbuild@v1
  24. - name: Build Library (MSVC16)
  25. run: |
  26. cd projects/VS2019
  27. msbuild.exe raylib.sln /property:Configuration=Release /property:Platform=x86
  28. cd ../..
  29. shell: cmd