anki/scripts/build.bat

16 lines
318 B
Batchfile
Raw Normal View History

2020-12-10 11:27:21 +01:00
@echo off
if not exist WORKSPACE (
echo Run from project root
exit /b 1
)
rd /s /q bazel-dist
set BUILDARGS=-k -c opt dist --color=yes --@rules_rust//worker:use_worker=False
call .\bazel build %BUILDARGS%
2020-12-10 11:27:21 +01:00
:: repeat on failure
IF %ERRORLEVEL% NEQ 0 call .\bazel build %BUILDARGS%
2020-12-10 11:27:21 +01:00
tar xvf bazel-bin\dist.tar