From 1c0cc775732201f4c4d3ee0d6772be786b3b4aa1 Mon Sep 17 00:00:00 2001 From: Uneven Prankster Date: Sun, 15 Oct 2023 21:28:29 -0300 Subject: A lot has certainly happened! --- raylib/.github/workflows/windows_examples.yml | 36 +++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 raylib/.github/workflows/windows_examples.yml (limited to 'raylib/.github/workflows/windows_examples.yml') diff --git a/raylib/.github/workflows/windows_examples.yml b/raylib/.github/workflows/windows_examples.yml new file mode 100644 index 0000000..19e23cf --- /dev/null +++ b/raylib/.github/workflows/windows_examples.yml @@ -0,0 +1,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@v3 + + - 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 + -- cgit v1.2.3