factor triangle light out of mesh light #608
This file contains 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: Check | |
on: | |
push: | |
branches: [ trunk ] | |
env: | |
ZIG_VERSION: 0.14.0-dev.2+0884a4341 | |
VULKAN_SDK_VERSION: 1.3.283.0 | |
jobs: | |
build-linux: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repo & submodules | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install system dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install wayland-protocols libwayland-dev libxkbcommon-dev # Wayland | |
sudo apt-get install libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev # X11 | |
- name: Install Vulkan SDK | |
uses: humbletim/install-vulkan-sdk@v1.1.1 | |
with: | |
version: ${{env.VULKAN_SDK_VERSION}} | |
cache: true | |
- name: Setup Zig | |
uses: goto-bus-stop/setup-zig@v2 | |
with: | |
version: ${{env.ZIG_VERSION}} | |
- name: Type check | |
run: zig build check | |
build-windows: | |
runs-on: windows-2022 | |
steps: | |
- name: Checkout repo & submodules | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install Vulkan SDK | |
uses: humbletim/install-vulkan-sdk@v1.1.1 | |
with: | |
version: ${{env.VULKAN_SDK_VERSION}} | |
cache: true | |
- name: Setup Zig | |
uses: goto-bus-stop/setup-zig@v2 | |
with: | |
version: ${{env.ZIG_VERSION}} | |
- name: Type check | |
run: zig build check |