mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 05:52:22 -04:00

- Update nextest (not required) - Build nextest without self-update, which pulls in ring - Disable running of tests in rsbridge, as it has no tests, and requires host arch's python.lib to execute - A double \ in CARGO_TARGET_DIR was breaking update_* tests
5 lines
212 B
Batchfile
Executable file
5 lines
212 B
Batchfile
Executable file
@echo off
|
|
set CARGO_TARGET_DIR=%~dp0..\out\rust
|
|
REM separate build+run steps so build env doesn't leak into subprocesses
|
|
cargo build -p runner --release || exit /b 1
|
|
out\rust\release\runner build %* || exit /b 1
|