# Archmage build and test commands
# Default: run all tests
default: test
# Run all tests
test:
cargo test --all-features
# Run clippy
lint:
cargo clippy --all-features -- -D warnings
# Format code
fmt:
cargo fmt
# Check formatting
fmt-check:
cargo fmt -- --check
# Run Miri tests (token logic only, no SIMD)
miri:
rustup run nightly cargo miri test --test miri_safe --all-features
# Regenerate safe_unaligned_simd wrappers
generate:
cargo run -p xtask -- generate
# ============================================================================
# Intel SDE testing (requires Intel SDE to be installed)
# Download from: https://www.intel.com/content/www/us/en/download/684897/intel-software-development-emulator.html
# ============================================================================
# Test as Pentium 4 (SSE2 only, no SSE3/SSSE3/SSE4)
test-p4:
sde64 -p4 -- cargo test --all-features
# Test as Nehalem (SSE4.2, no AVX)
test-nehalem:
sde64 -nhm -- cargo test --all-features
# Test as Haswell (AVX2 + FMA, no AVX-512)
test-haswell:
sde64 -hsw -- cargo test --all-features
# Test as Skylake-X (AVX-512)
test-skylake:
sde64 -skx -- cargo test --all-features
# Test as Ice Lake (AVX-512 + VBMI2)
test-icelake:
sde64 -icl -- cargo test --all-features
# Run all SDE tests (requires Intel SDE)
test-all-cpus: test-p4 test-nehalem test-haswell test-skylake test-icelake
# ============================================================================
# Cross-compilation testing (requires cargo-cross)
# Install: cargo install cross --git https://github.com/cross-rs/cross
# ============================================================================
# Test on 32-bit x86 (via QEMU)
test-i686:
cross test --all-features --target i686-unknown-linux-gnu
# Test on aarch64 (via QEMU)
test-aarch64:
cross test --all-features --target aarch64-unknown-linux-gnu
# Test on armv7 (via QEMU)
test-armv7:
cross test --all-features --target armv7-unknown-linux-gnueabihf
# Build for all cross targets (faster than running tests)
build-cross:
cross build --all-features --target i686-unknown-linux-gnu
cross build --all-features --target aarch64-unknown-linux-gnu
cross build --all-features --target armv7-unknown-linux-gnueabihf
# Run tests on all cross targets
test-cross: test-i686 test-aarch64 test-armv7
@echo "All cross-compilation tests passed!"
# Clippy for x86_64
clippy-x86_64:
cargo clippy --all-features --target x86_64-unknown-linux-gnu -- -D warnings
# Clippy for aarch64
clippy-aarch64:
cargo clippy --all-features --target aarch64-unknown-linux-gnu -- -D warnings
# Clippy for i686
clippy-i686:
cargo clippy --all-features --target i686-unknown-linux-gnu -- -D warnings
# Clippy for all targets
clippy-all: clippy-x86_64 clippy-aarch64 clippy-i686
@echo "All clippy checks passed!"
# ============================================================================
# CI-style comprehensive test
# ============================================================================
# Full CI check (no SDE)
ci: fmt-check lint test miri
@echo "All CI checks passed!"
# Full validation with SDE (for local development)
validate: ci test-all-cpus
@echo "Full validation complete!"
# Full validation including cross-compilation
validate-all: ci test-cross clippy-all
@echo "Full cross-platform validation complete!"