Skip to content

slider work

slider work #354

Workflow file for this run

on: [push]
name: Check Windows
jobs:
check:
strategy:
matrix:
# FIXME: Enable legacy windows if required
# os: [windows-latest, windows-2019]
os: [windows-latest,]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: ilammy/setup-nasm@v1
- uses: Swatinem/rust-cache@v2
- name: Install vcpkg
run: vcpkg integrate install
- name: Install Ninja
run: choco install ninja
# - name: Install Vulkan SDK
# uses: humbletim/[email protected]
# with:
# cache: true
- name: cargo check without default features
run: cargo check --no-default-features --features notan/shaderc
- name: clean
run: cargo clean
- name: Install libheif
run: vcpkg install libheif:x64-windows-static-md
- name: Install libheif static
run: vcpkg install libheif:x64-windows-static
- name: cargo check build features & heif
run: cargo check --features heif --features notan/shaderc