Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/aiekick/Lumo
Browse files Browse the repository at this point in the history
  • Loading branch information
aiekick committed Nov 21, 2023
2 parents f63f3f6 + fb8fa03 commit 766358f
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/Win_Lumo_With_Base_Plugins.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Win Lumo With Base Plugins

on:
workflow_dispatch:
workflow_run:
workflows:
- scheduled
branches:
- master
types:
- requested

jobs:
build_Win_Lumo_With_Base_Plugins:
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_MeshGen=ON -DPLUGIN_ENABLE_LIGHTING=ON -DPLUGIN_ENABLE_MISC=ON -DPLUGIN_ENABLE_POST_PROCESSING=ON -DPLUGIN_ENABLE_SIMULATION=ON
- name: build
run: cmake --build build --config Release --target package
- name: upload artifact
uses: actions/upload-artifact@v3
with:
name: Lumo_Win_With_Base_Plugins
path: "bin/packages/Lumo*.zip"

0 comments on commit 766358f

Please sign in to comment.