@@ -127,13 +127,8 @@ jobs:
127
127
cargo clippy --target ${{ matrix.target }} -p wgpu --tests --features glsl,spirv
128
128
cargo doc --target ${{ matrix.target }} -p wgpu --no-deps --features glsl,spirv
129
129
130
- # build for WebGL
131
- cargo clippy --target ${{ matrix.target }} -p wgpu --tests --features webgl,glsl,spirv
132
- cargo doc --target ${{ matrix.target }} -p wgpu --no-deps --features webgl,glsl,spirv
133
-
134
130
# all features
135
- cargo clippy --target ${{ matrix.target }} -p wgpu-hal --tests --all-features
136
- cargo clippy --target ${{ matrix.target }} -p wgpu --tests --all-features
131
+ cargo clippy --target ${{ matrix.target }} -p wgpu -p wgpu-hal --tests --all-features
137
132
cargo doc --target ${{ matrix.target }} -p wgpu --no-deps --all-features
138
133
139
134
- name : check em
@@ -165,17 +160,10 @@ jobs:
165
160
cargo clippy --target ${{ matrix.target }} -p wgpu -p wgpu-core -p wgpu-info -p player --no-default-features
166
161
167
162
# Check with all features.
168
- # (But watch out for backend-selection features in wgpu-core; some of
169
- # those only build on the right platforms.)
170
- cargo clippy --target ${{ matrix.target }} -p wgpu-hal --tests --all-features
171
- cargo clippy --target ${{ matrix.target }} -p wgpu-core --tests --all-features
172
- cargo clippy --target ${{ matrix.target }} -p wgpu -p wgpu-info -p player --tests --all-features
163
+ cargo clippy --target ${{ matrix.target }} -p wgpu -p wgpu-info -p player -p wgpu-core -p wgpu-hal --tests --all-features
173
164
174
165
# build docs
175
- # (Watch out for backend-selection features in wgpu-core; some of
176
- # those only build on the right platforms.)
177
- cargo doc --target ${{ matrix.target }} -p wgpu -p wgpu-info -p player --all-features --no-deps
178
- cargo doc --target ${{ matrix.target }} -p wgpu-core --no-deps --all-features
166
+ cargo doc --target ${{ matrix.target }} -p wgpu -p wgpu-info -p player -p wgpu-core -p wgpu-hal --all-features --no-deps
179
167
180
168
wasm-test :
181
169
name : Test WebAssembly
0 commit comments