SV_Physics() : Performance boost for SV_PushMove() when there is a lot of pushers and pushed entities. #814
Workflow file for this run
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: macOS CI | |
on: [push, pull_request] | |
jobs: | |
build-mac-os: | |
name: Build macOS | |
runs-on: macos-12 | |
strategy: | |
fail-fast: false | |
matrix: | |
configuration: [release, debug] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: brew install molten-vk vulkan-headers glslang spirv-tools sdl2 libvorbis flac opus opusfile flac mad meson | |
- name: Build vkQuake | |
run: meson build --buildtype=${{ matrix.configuration }} && ninja -C build | |
- name: Upload vkQuake | |
uses: actions/upload-artifact@v4 | |
with: | |
name: vkQuake archive (${{ matrix.configuration }}) | |
path: build/vkquake |