Closed LegNeato closed 2 weeks ago
Due to an underlying rustc change when forward porting, building without --release was broken on aarch64 (see https://github.com/Rust-GPU/rust-gpu/issues/29 and https://github.com/Rust-GPU/rust-gpu/issues/31). Unfortunately, CI only runs --release so we were blind to this breakage.
--release
While running everything with and without --release is probably not worth the additional CI time, we should have at least one job on each platform that ensures both configs work at a basic level.
Fixed by https://github.com/Rust-GPU/rust-gpu/pull/52, thanks @zanciks ! 🥳
Due to an underlying rustc change when forward porting, building without
--release
was broken on aarch64 (see https://github.com/Rust-GPU/rust-gpu/issues/29 and https://github.com/Rust-GPU/rust-gpu/issues/31). Unfortunately, CI only runs--release
so we were blind to this breakage.While running everything with and without
--release
is probably not worth the additional CI time, we should have at least one job on each platform that ensures both configs work at a basic level.