mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-23 18:49:08 +08:00
325de57d54
Use the latest version which is available. Remove also some unneeded whitespace. Signed-off-by: Stefan Weil <sw@weilnetz.de>
48 lines
1.1 KiB
YAML
48 lines
1.1 KiB
YAML
language: cpp
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
sudo: required
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
#branches:
|
|
#only:
|
|
#- master
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- gcc-4.8
|
|
- g++-4.8
|
|
|
|
before_install:
|
|
- if [[ $TRAVIS_OS_NAME == linux ]]; then LINUX=true; fi
|
|
- if [[ $TRAVIS_OS_NAME == osx ]]; then OSX=true; fi
|
|
|
|
#- if [[ $OSX ]]; then brew update; fi
|
|
|
|
- export LEPT_VER=1.74.1
|
|
|
|
install:
|
|
#- if [[ $OSX ]]; then brew install icu4c pango; brew link --force gettext; fi
|
|
#- if [[ $OSX ]]; then export ICU_ROOT=/usr/local/opt/icu4c ; fi
|
|
- if [[ $LINUX ]]; then wget https://www.cmake.org/files/v3.7/cmake-3.7.2-Linux-x86_64.sh; fi
|
|
- if [[ $LINUX ]]; then sudo sh cmake-3.7.2-Linux-x86_64.sh --skip-license --prefix=/usr; fi
|
|
- wget -O leptonica.zip https://github.com/DanBloomberg/leptonica/archive/$LEPT_VER.zip
|
|
- unzip leptonica.zip -d .
|
|
- cmake -Hleptonica-$LEPT_VER -Bleptonica-$LEPT_VER/build
|
|
- make -C leptonica-$LEPT_VER/build
|
|
- if [[ $LINUX && "$CXX" = "g++" ]]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
|
|
|
|
script:
|
|
- mkdir build
|
|
- cd build
|
|
- cmake .. -DLeptonica_DIR=leptonica-$LEPT_VER/build
|
|
- make
|