Skip to content

resources: Fix specular normal and specular maps in Sponza #54

resources: Fix specular normal and specular maps in Sponza

resources: Fix specular normal and specular maps in Sponza #54

Workflow file for this run

name: Windows
on:
push:
paths-ignore:
- '*.rst'
- 'UNLICENCE'
- 'Doxyfile.in'
- 'images/**'
- 'shaders/**'
pull_request:
paths-ignore:
- '*.rst'
- 'UNLICENCE'
- 'Doxyfile.in'
- 'images/**'
- 'shaders/**'
jobs:
build:
strategy:
fail-fast: false
matrix:
build_type: [Debug, Release]
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Enable MSVC Developer Command Prompt
uses: ilammy/[email protected]
- name: Generate
run: cmake -S${{ github.workspace }} -B${{ github.workspace }}/build -G"Ninja" -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
- name: Build
run: cmake --build ${{ github.workspace }}/build --config ${{ matrix.build_type }}