Skip to content

Commit

Permalink
Codecoverage CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kvark committed Sep 9, 2021
1 parent 83abe2a commit ca6fd97
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/lazy.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Lazy jobs running on master post merges.
name: lazy
name: Lazy
on:
push:
branches: [master]
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.

Expand Down
2 changes: 1 addition & 1 deletion wgpu-core/src/validation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit ca6fd97

Please sign in to comment.