
* stable ci
* fixer
* aa
* no -z flag
* doc
* ??
* this one needs
* nightly for some of them ..
* turn off fail fast for now 🥱
* aaa
* afasdfasfas
* mm
* tmate
* linker's fault
* fixer
* f
* dfsafdasfasf
8 lines
424 B
Bash
Executable File
8 lines
424 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Script to find .rs files that don't get built.
|
|
|
|
cargo build --examples --all-features --tests --examples --benches
|
|
|
|
# Find all files in deps, then compare to all actual .d files. Ignore a range of files.
|
|
grep --no-filename '^[^/].*\.rs:$' target/debug/deps/*.d | sed 's/:$//' | sort -u | diff - <(find . -name '*.rs' | sed 's/\.\///' | sort -u) | grep -Ev '(target/|scripts/|symcc_runtime/|build.rs|fuzzers/)' |