15dcb09036
* Migrate check_copyright to Rust * Add a new lint to check accidental usages of /// in ts/svelte comments * Fix a bunch of incorrect jdoc comments * Move contributor check into minilints Will allow users to detect the issue locally with './ninja check' before pushing to CI. * Make Cargo.toml consistent with other crates
27 lines
450 B
Bash
Executable File
27 lines
450 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "+++ Building and testing"
|
|
ln -sf out/node_modules .
|
|
|
|
export PATH="$PATH:/state/rust/cargo/bin"
|
|
export BUILD_ROOT=/state/build
|
|
export ONLINE_TESTS=1
|
|
|
|
if [ "$CLEAR_RUST" = "1" ]; then
|
|
rm -rf $BUILD_ROOT/rust
|
|
fi
|
|
|
|
./ninja pylib/anki qt/aqt check
|
|
|
|
echo "--- Ensure libs importable"
|
|
SKIP_RUN=1 ./run
|
|
|
|
echo "--- Check Rust libs"
|
|
cargo install cargo-deny
|
|
cargo deny check -A duplicate
|
|
|
|
echo "--- Cleanup"
|
|
rm -rf /tmp/* || true
|