Codecoverage CI fix

This commit is contained in:
Dzmitry Malyshau 2021-09-09 09:47:40 -04:00
parent 83abe2a06d
commit ca6fd97c62
3 changed files with 5 additions and 4 deletions

View File

@ -1,5 +1,5 @@
# Lazy jobs running on master post merges.
name: lazy
name: Lazy
on:
push:
branches: [master]
@ -19,7 +19,8 @@ jobs:
- run: sudo apt install -y libxcb-xfixes0-dev mesa-vulkan-drivers
- name: Generate report
uses: actions-rs/tarpaulin@v0.1
args: -p wgpu-core
with:
args: '-p wgpu-core -p wgpu-hal'
- name: Upload to codecov.io
uses: codecov/codecov-action@v1
with:

View File

@ -19,7 +19,7 @@ The repository hosts the following parts:
- `player` - standalone application for replaying the API traces, uses `winit`
For an overview of all the components in the gfx-rs ecosystem, see the [gfx-rs big picture](./etc/big-picture.png).
For an overview of all the components in the gfx-rs ecosystem, see [the big picture](./etc/big-picture.png).
Rust examples can be found at `wgpu/examples`. `wgpu` is a default member, so you can run the examples directly from the root, e.g. `cargo run --example boids`.

View File

@ -220,7 +220,7 @@ pub enum InputError {
pub enum StageError {
#[error("shader module is invalid")]
InvalidModule,
#[error("unable to find entry point '{0:?}'")]
#[error("unable to find entry point '{0}'")]
MissingEntryPoint(String),
#[error("shader global {0:?} is not available in the layout pipeline layout")]
Binding(naga::ResourceBinding, #[source] BindingError),