Added dependencies caching.

This commit is contained in:
Gres 2017-08-06 11:50:05 +03:00
parent 280175e9c2
commit 5800c23989
2 changed files with 29 additions and 16 deletions

View File

@ -10,7 +10,10 @@ platform:
init: init:
- if /i %APPVEYOR_REPO_TAG% == true set WITH_TESSDATA=1 - if /i %APPVEYOR_REPO_TAG% == true set WITH_TESSDATA=1
cache:
- installed -> scripts\win\prepare.bat
install: install:
- call "scripts\win\prepare.bat" - call "scripts\win\prepare.bat"

View File

@ -6,16 +6,9 @@ call %SELF_PATH%\env.bat
rem choco install curl cmake rem choco install curl cmake
mkdir download mkdir download
if not exist download\leptonica.zip (
curl -fsSLk -o download\leptonica.zip https://github.com/DanBloomberg/leptonica/archive/1.74.4.zip
)
if not exist download\tesseract.zip (
curl -fsSLk -o download\tesseract.zip https://github.com/tesseract-Ocr/tesseract/archive/3.05.01.zip
)
if "%WITH_TESSDATA%" == "" goto build
if "%WITH_TESSDATA%" == "" goto libs
echo "Downloading tessdata"
mkdir download\tessdata mkdir download\tessdata
cd download\tessdata cd download\tessdata
curl -fsSLk -O https://github.com/tesseract-Ocr/tessdata/raw/3.04.00/ara.cube.bigrams curl -fsSLk -O https://github.com/tesseract-Ocr/tessdata/raw/3.04.00/ara.cube.bigrams
@ -66,13 +59,31 @@ curl -fsSLk -O https://github.com/tesseract-Ocr/tessdata/raw/3.04.00/spa.cube.
curl -fsSLk -O https://github.com/tesseract-Ocr/tessdata/raw/3.04.00/spa.traineddata curl -fsSLk -O https://github.com/tesseract-Ocr/tessdata/raw/3.04.00/spa.traineddata
curl -fsSLk -O https://github.com/tesseract-Ocr/tessdata/raw/3.04.00/spa_old.traineddata curl -fsSLk -O https://github.com/tesseract-Ocr/tessdata/raw/3.04.00/spa_old.traineddata
cd ..\.. cd ..\..
:libs
:build if "%CLEAR_CACHE%" == "" goto build-libs
echo "Clearing cache"
rmdir /s /q installed
rmdir /s /q leptonica rmdir /s /q leptonica
rmdir /s /q leptonica-build
rmdir /s /q tesseract
rmdir /s /q leptonica-build
rmdir /s /q installed
:build-libs
if exist installed\bin\tesseract*.dll goto end
echo "Downloading dependencies"
if not exist download\leptonica.zip (
curl -fsSLk -o download\leptonica.zip https://github.com/DanBloomberg/leptonica/archive/1.74.4.zip
)
if not exist download\tesseract.zip (
curl -fsSLk -o download\tesseract.zip https://github.com/tesseract-Ocr/tesseract/archive/3.05.01.zip
)
echo "Building dependencies"
unzip -qq download\leptonica.zip unzip -qq download\leptonica.zip
move leptonica* leptonica move leptonica* leptonica
mkdir leptonica-build mkdir leptonica-build
@ -85,7 +96,6 @@ copy /y /b installed\lib\leptonica*.lib installed\lib\lept.lib
if %errorlevel% neq 0 exit /b %errorlevel% if %errorlevel% neq 0 exit /b %errorlevel%
rmdir /s /q tesseract
unzip -qq download\tesseract.zip unzip -qq download\tesseract.zip
move tesseract* tesseract move tesseract* tesseract
mkdir tesseract-build mkdir tesseract-build
@ -97,5 +107,5 @@ cd ..
copy /y /b installed\lib\tesseract*.lib installed\lib\tesseract.lib copy /y /b installed\lib\tesseract*.lib installed\lib\tesseract.lib
if %errorlevel% neq 0 exit /b %errorlevel% if %errorlevel% neq 0 exit /b %errorlevel%
:end