Skip to content

[Vulkan] Add limit checks for vertex input stride #139

[Vulkan] Add limit checks for vertex input stride

[Vulkan] Add limit checks for vertex input stride #139

Workflow file for this run

name: Build
on:
push:
paths-ignore:
- '**/README.md'
- 'docs/'
pull_request:
paths-ignore:
- '**/README.md'
- 'docs/'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
include:
- os: ubuntu-latest
run-build: sh ./build.sh
- os: windows-latest
run-build: .\build.cmd
- os: macos-latest
run-build: bash ./build.sh
steps:
- uses: actions/checkout@v4
- name: Install Dotnet
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: Restore NuGet cache
uses: actions/cache@v4
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/paket.lock') }}
restore-keys: |
${{ runner.os }}-nuget-
- name: Build
run: ${{ matrix.run-build }}