mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
16 lines
344 B
Batchfile
Executable file
16 lines
344 B
Batchfile
Executable file
set PATH=c:\cargo\bin;%PATH%
|
|
|
|
echo +++ Building and testing
|
|
|
|
if exist \buildkite\state\out (
|
|
move \buildkite\state\out .
|
|
)
|
|
if exist \buildkite\state\node_modules (
|
|
move \buildkite\state\node_modules .
|
|
)
|
|
|
|
call tools\ninja build pylib qt check || exit /b 1
|
|
|
|
echo --- Cleanup
|
|
move out \buildkite\state\
|
|
move node_modules \buildkite\state\
|