mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-12-11 23:19:04 +08:00
778dfc6933
Reason: https://github.com/actions/runner-images/issues/6002 I still keep Ubuntu 18.04 in autotools CIs for now. [skip ci]
79 lines
2.1 KiB
YAML
79 lines
2.1 KiB
YAML
name: unittest-disablelegacy
|
|
# autotools build on ubuntu, unittests with disabled legacy engine.
|
|
# currently some unittests are failing with disabled legacy engine.
|
|
|
|
on:
|
|
#push:
|
|
schedule:
|
|
- cron: 0 10 * * *
|
|
|
|
jobs:
|
|
linux:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
compiler: [ g++, clang++ ]
|
|
os: [ ubuntu-20.04 ]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install autoconf libleptonica-dev libpango1.0-dev -y
|
|
sudo apt-get install cabextract -y
|
|
#sudo apt-get install libc++-7-dev libc++abi-7-dev -y
|
|
|
|
- name: Setup
|
|
run: |
|
|
mkdir -p m4
|
|
./autogen.sh
|
|
|
|
- name: Configure
|
|
run: |
|
|
./configure '--disable-shared' '--disable-legacy' 'CXX=${{ matrix.compiler }}'
|
|
|
|
- name: Make and Install Tesseract
|
|
run: |
|
|
make -j 8
|
|
sudo make install install
|
|
|
|
- name: Make and Install Training Tools
|
|
run: |
|
|
make training -j 8
|
|
sudo make install training-install
|
|
|
|
- name: Display Version
|
|
run: |
|
|
${{ matrix.compiler }} --version
|
|
tesseract -v
|
|
lstmtraining -v
|
|
text2image -v
|
|
if: success() || failure()
|
|
|
|
- name: Download fonts, tessdata and langdata required for tests
|
|
run: |
|
|
git clone https://github.com/egorpugin/tessdata tessdata_unittest
|
|
cp tessdata_unittest/fonts/* test/testing/
|
|
mv tessdata_unittest/* ../
|
|
|
|
- name: Run Tesseract on phototest.tif and devatest.png
|
|
run: |
|
|
tesseract test/testing/phototest.tif - --tessdata-dir ../tessdata
|
|
tesseract test/testing/devatest.png - -l hin+eng --tessdata-dir ../tessdata
|
|
|
|
- name: Make and run Unit Tests
|
|
run: |
|
|
make check -j 4
|
|
|
|
- name: Display Unit Tests Report
|
|
run: |
|
|
git log -3
|
|
${{ matrix.compiler }} --version
|
|
cat test-suite.log
|
|
if: always()
|