From dbe33aa2bb672274dfe8d0f3b1d6c3184362d6e8 Mon Sep 17 00:00:00 2001 From: Chuck Walbourn Date: Thu, 25 Jul 2024 20:32:56 -0700 Subject: [PATCH] Build shaders --- .github/workflows/msvc.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/msvc.yml b/.github/workflows/msvc.yml index 5cab96f9..f267947b 100644 --- a/.github/workflows/msvc.yml +++ b/.github/workflows/msvc.yml @@ -40,9 +40,16 @@ jobs: uses: actions/checkout@v4 - name: Configure CMake - working-directory: ${{env.GITHUB_WORKSPACE}} + working-directory: ${{ github.workspace }} run: cmake -B out -DCMAKE_DISABLE_PRECOMPILE_HEADERS=ON + - name: 'Build Shaders' + shell: cmd + working-directory: ./Src/Shaders + run: CompileShaders.cmd + env: + CompileShadersOutput: ${{ github.workspace }}/out/Shaders/Compiled + - name: Initialize MSVC Code Analysis uses: microsoft/msvc-code-analysis-action@v0.1.1 id: run-analysis