From 83851af4b5aea1493c2c886b97a2322eaeabf569 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sat, 27 Sep 2025 13:14:14 +0700 Subject: [PATCH] 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 --- .buildkite/linux/entrypoint | 1 + 1 file changed, 1 insertion(+) diff --git a/.buildkite/linux/entrypoint b/.buildkite/linux/entrypoint index a519cfc3d..4c656aa5c 100755 --- a/.buildkite/linux/entrypoint +++ b/.buildkite/linux/entrypoint @@ -16,6 +16,7 @@ if [ "$CLEAR_RUST" = "1" ]; then rm -rf $BUILD_ROOT/rust fi +rm -f out/build.ninja ./ninja pylib qt check echo "--- Ensure libs importable"