Skip to content

command encoder renamings (#66) #137

command encoder renamings (#66)

command encoder renamings (#66) #137

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
build:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
config: ["Debug", "Release"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup MSVC
uses: ilammy/msvc-dev-cmd@v1
- name: Setup CMake/Ninja
uses: lukka/get-cmake@latest
- name: Configure
run: cmake -S . -B build
- name: Build
run: cmake --build build -j 2