stages: - build rust-latest: stage: build image: rust:latest script: - cargo build --verbose --features=fma,f16,ir - cargo test --verbose --features=fma,f16,ir rust-nightly: stage: build image: rustlang/rust:nightly script: - cargo build --verbose --features=stdsimd - cargo test --verbose --features=stdsimd