Skip to content

Update workflows, add macOS AArch64 build #18

Update workflows, add macOS AArch64 build

Update workflows, add macOS AArch64 build #18

GitHub Actions / Run clippy (macos-latest, all features) succeeded Jan 4, 2024 in 0s

Run clippy (macos-latest, all features)

2 warnings

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 2
Note 0
Help 0

Versions

  • rustc 1.77.0-nightly (e51e98dde 2023-12-31)
  • cargo 1.77.0-nightly (ac6bbb332 2023-12-26)
  • clippy 0.1.77 (e51e98dd 2023-12-31)

Annotations

Check warning on line 163 in render/wgpu-2d/src/common/render/bgs/avx2.rs

See this annotation in the file changed.

@github-actions github-actions / Run clippy (macos-latest, all features)

unused variable: `zero`

warning: unused variable: `zero`
   --> render/wgpu-2d/src/common/render/bgs/avx2.rs:163:9
    |
163 |     let zero = _mm256_setzero_si256();
    |         ^^^^ help: if this is intentional, prefix it with an underscore: `_zero`
    |
    = note: `#[warn(unused_variables)]` on by default

Check warning on line 5 in render/wgpu-2d/src/common/render/bgs/avx2.rs

See this annotation in the file changed.

@github-actions github-actions / Run clippy (macos-latest, all features)

unused imports: `mem::transmute`, `simd::u64x4`

warning: unused imports: `mem::transmute`, `simd::u64x4`
 --> render/wgpu-2d/src/common/render/bgs/avx2.rs:5:29
  |
5 | use core::{arch::x86_64::*, mem::transmute, simd::u64x4};
  |                             ^^^^^^^^^^^^^^  ^^^^^^^^^^^
  |
  = note: `#[warn(unused_imports)]` on by default