[FIX] : fix compilation #23
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Win Plugin Lighting | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'Plugins/Lighting/**' | |
jobs: | |
build_Win_Plugin_Lighting: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: master | |
- name: checkout submodules | |
run : git submodule update --init --recursive | |
- name: Prepare Vulkan SDK | |
uses: humbletim/[email protected] | |
with: | |
vulkan-query-version: 1.3.224.1 | |
vulkan-components: Vulkan-Headers, Vulkan-Loader | |
vulkan-use-cache: true | |
- name: configure | |
run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DPLUGIN_ENABLE_LIGHTING=ON | |
- name: build | |
run: cmake --build build --config Release -t Lighting | |
- name: upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Lumo Lighting | |
path: "bin/plugins/*Lighting*" |