Skip to content

[ADD] : adding of a in app profiler #20

[ADD] : adding of a in app profiler

[ADD] : adding of a in app profiler #20

name: Win Plugin CodeGenerator
on:
push:
branches:
- master
paths:
- 'Plugins/CodeGenerator/**'
jobs:
build_Win_Plugin_CodeGenerator:
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/setup-vulkan-sdk@v1.2.0
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_CODE_GENERATOR=ON
- name: build
run: cmake --build build --config Release -t CodeGenerator
- name: upload artifact
uses: actions/upload-artifact@v3
with:
name: Lumo CodeGenerator
path: "bin/plugins/*CodeGenerator*"