Skip to content

Change wgpu object drop order to fix memory leak #133

Change wgpu object drop order to fix memory leak

Change wgpu object drop order to fix memory leak #133

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
check-rs:
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"
steps:
- name: Install Protoc
uses: arduino/setup-protoc@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
with:
prefix-key: "check-linux"
- name: Check cargo fmt compliance
run: cargo fmt --all -- --check
- name: Check no rustc warnings
run: |
cd avenger && cargo check --tests && cd ..
cd avenger-vega && cargo check --tests && cd ..
cd avenger-wgpu && cargo check --tests && cd ..
cd avenger-vega-test-data && cargo check --tests && cd ..
- name: Check for clippy warnings
run: |
cd avenger && cargo clippy && cd ..
cd avenger-vega && cargo clippy && cd ..
cd avenger-wgpu && cargo clippy && cd ..
cd avenger-vega-test-data && cargo clippy && cd ..
- name: Build
run: |
cd avenger && cargo build && cd ..
cd avenger-vega && cargo build && cd ..
cd avenger-wgpu && cargo build && cd ..
cd avenger-vega-test-data && cargo build && cd ..
pushd examples/scatter-panning && cargo build && popd
pushd examples/wgpu-winit && cargo build && popd
# # Tests currently fail with `MakeWgpuAdapterError`
# - name: Run tests
# run: cargo test --verbose
test-rs-macos:
runs-on: macos-latest
env:
RUSTFLAGS: "-D warnings"
steps:
- name: Install Protoc
uses: arduino/setup-protoc@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
- name: Install latest stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v2
with:
prefix-key: "test-macos"
- name: version
run: rustc --version
- name: test
run: cd avenger-wgpu/ && cargo test -- --nocapture
- name: Update images
uses: actions/upload-artifact@v4
with:
name: images-macos
path: avenger-wgpu/tests/output