Skip to content
This repository was archived by the owner on Jun 15, 2025. It is now read-only.

[FIX] : fix texture glitch after resize #11

[FIX] : fix texture glitch after resize

[FIX] : fix texture glitch after resize #11

name: Win Plugin Landscape
on:
push:
branches:
- master
paths:
- 'Plugins/Landscape/**'
jobs:
build_Win_Plugin_Landscape:
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_LANDSCAPE=ON
- name: build
run: cmake --build build --config Release -t Landscape
- name: upload artifact
uses: actions/upload-artifact@v3
with:
name: Lumo Landscape
path: "bin/plugins/*Landscape*"