robotgo/vendor/github.com/otiai10/gosseract/.travis.yml
2018-08-30 14:25:58 -04:00

25 lines
628 B
YAML

language: go
go:
# - 1.7
- 1.8
- 1.9
- tip
services:
- docker
compiler:
- g++
before_install:
# - TESSERACT=4.00.00dev LEPTONICA=1.74.2 sudo ./test/script/setup.sh
- sudo apt-get update -qq
- sudo apt-get install -y -qq libtesseract-dev libleptonica-dev tesseract-ocr-eng
env:
- LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib
before_script:
- go get github.com/otiai10/mint
script:
- go test -v -bench .
- go test -race -coverprofile=coverage.txt -covermode=atomic
- ./test/runtime --driver docker --verbose
after_success:
- bash <(curl -s https://codecov.io/bash)