Skip to content

Added constants and assertions. #68

Added constants and assertions.

Added constants and assertions. #68

Workflow file for this run

name: Build Engine and Run Unit Tests
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: rui314/setup-mold@v1
- name: Install Vulkan runtime dependencies
run: sudo add-apt-repository ppa:kisak/kisak-mesa && sudo apt-get update && sudo apt-get install -y mesa-vulkan-drivers libvulkan1 vulkan-tools vulkan-validationlayers
- name: Install Vulkan SDK
uses: humbletim/setup-vulkan-sdk@v1.2.0
with:
vulkan-query-version: latest
vulkan-components: Vulkan-Headers, Vulkan-Loader
vulkan-use-cache: true
- uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build
- name: Run unit tests
run: RUST_BACKTRACE=1 cargo test -- --skip render --skip window --skip graphics