tesseract/.travis.yml

46 lines
1.1 KiB
YAML
Raw Normal View History

2015-09-07 01:54:05 +08:00
language: cpp
notifications:
email: false
sudo: required
os:
- linux
- osx
branches:
only:
- master
2015-09-07 01:59:04 +08:00
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- g++-4.8
2015-09-07 02:15:04 +08:00
before_install:
2015-09-07 02:58:49 +08:00
- if [[ $TRAVIS_OS_NAME == linux ]]; then LINUX=true; fi
- if [[ $TRAVIS_OS_NAME == osx ]]; then OSX=true; fi
2015-09-07 02:15:04 +08:00
- if [[ $OSX ]]; then brew update; fi
2015-09-07 01:54:05 +08:00
install:
2015-09-07 03:05:54 +08:00
- if [[ $OSX ]]; then brew install icu4c pango; brew link --force gettext; fi
2015-09-07 02:36:47 +08:00
- if [[ $OSX ]]; then export ICU_ROOT=/usr/local/opt/icu4c ; fi
- wget --no-check-certificate https://www.cmake.org/files/v3.3/cmake-3.3.1-Linux-x86_64.sh
2015-09-07 01:54:05 +08:00
- sudo sh cmake-3.3.1-Linux-x86_64.sh --skip-license --prefix=/usr
- wget -O leptonica.zip https://github.com/egorpugin/leptonica/archive/master.zip
- unzip leptonica.zip -d .
- cmake -Hleptonica-master -Bleptonica-master/build
2015-09-07 01:59:04 +08:00
- make -C leptonica-master/build
2015-09-07 03:12:45 +08:00
- if [[ $LINUX && "$CXX" = "g++" ]]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
2015-09-07 01:54:05 +08:00
script:
- mkdir build
- cd build
- cmake .. -DLeptonica_BUILD_DIR=leptonica-master/build
2015-09-07 01:54:05 +08:00
- make