Skip to content

Update to wgpu 0.20 #33

Update to wgpu 0.20

Update to wgpu 0.20 #33

Workflow file for this run

on: [push, pull_request]
name: CI
env:
CARGO_INCREMENTAL: false
CARGO_TERM_COLOR: always
RUST_BACKTRACE: full
MSRV: 1.76
jobs:
check-msrv:
strategy:
fail-fast: false
matrix:
include:
# Windows
- name: Windows x86_64
os: windows-2022
target: x86_64-pc-windows-msvc
# MacOS
- name: MacOS x86_64
os: macos-12
target: x86_64-apple-darwin
# Linux
- name: Linux x86_64
os: ubuntu-22.04
target: x86_64-unknown-linux-gnu
name: Clippy ${{ matrix.name }}
runs-on: ${{ matrix.os }}
steps:
- name: checkout repo
uses: actions/checkout@v3
- name: Install MSRV toolchain
run: |
rustup toolchain install ${{ env.MSRV }} --no-self-update --profile=minimal --component clippy --target ${{ matrix.target }}
rustup default ${{ env.MSRV }}
- name: check native
shell: bash
run: |
set -e
cargo clippy --target ${{ matrix.target }}
# check_wasm:
# name: Check wasm32 + clippy + wasm-bindgen-cli
# runs-on: ubuntu-22.04
# steps:
# - uses: actions/checkout@v3
# - uses: actions-rs/toolchain@v1
# with:
# profile: minimal
# toolchain: ${{ env.MSRV }}
# target: wasm32-unknown-unknown
# override: true
# - name: Install wasm target
# run: rustup target add wasm32-unknown-unknown
# - name: Install wasm-bindgen-cli
# run: cargo install wasm-bindgen-cli --version=0.2.84
# - name: Clippy
# run: RUSTFLAGS=--cfg=web_sys_unstable_apis cargo clippy --target wasm32-unknown-unknown
# - name: Build WASM
# run: RUSTFLAGS=--cfg=web_sys_unstable_apis cargo build --target wasm32-unknown-unknown