mirror of
https://github.com/ankitects/anki.git
synced 2025-11-06 04:37:22 -05:00
* Fix/Ensure fuzz doesn't go backward during rescheduling Fixes https://github.com/ankitects/anki/issues/2694 * Fix * Get previous_interval from LastRevlogInfo * Fix * Format * Format * Exclude lapses * Force reconfigure in CI The cached build.ninja may reference files that don't exist in the PR. On a local build this tends to auto-fix itself as the build scripts detect a quick failure and re-run the configure, but CI tends to be too slow. https://github.com/ankitects/anki/pull/4364#issuecomment-3338026129 * Rename min/max to make it clear they restrict interval, not fuzz * Wording tweaks/comments for clarity --------- Co-authored-by: Damien Elmes <gpg@ankiweb.net>
30 lines
510 B
Bash
Executable file
30 lines
510 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
export PATH="$PATH:/state/rust/cargo/bin"
|
|
export BUILD_ROOT=/state/build
|
|
export ONLINE_TESTS=1
|
|
|
|
echo "--- Install n2"
|
|
./tools/install-n2
|
|
|
|
echo "+++ Building and testing"
|
|
ln -sf out/node_modules .
|
|
|
|
if [ "$CLEAR_RUST" = "1" ]; then
|
|
rm -rf $BUILD_ROOT/rust
|
|
fi
|
|
|
|
rm -f out/build.ninja
|
|
./ninja pylib qt check
|
|
|
|
echo "--- Ensure libs importable"
|
|
SKIP_RUN=1 ./run
|
|
|
|
echo "--- Check Rust libs"
|
|
cargo install cargo-deny --version 0.14.24
|
|
cargo deny check
|
|
|
|
echo "--- Cleanup"
|
|
rm -rf /tmp/* || true
|