/
githubmirror
/
tesseract
Обзор
Документация
Войти
/
githubmirror
/
tesseract
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/cmake.yml
163 строки
6 KB
dependabot[bot]
Bump actions/checkout from 6 to 7
22 июн 2026, 08:30
22 июн 2026, 08:30
65c3d1b
Код
Авторство
О чём код?
name: cmake # cmake build of tesseract and training tools on ubuntu and macOS homebrew using Ninja. # test command line version of tesseract. run basicapitest. on: push: paths: - cmake/** - '**/CMakeLists.txt' pull_request: paths: - cmake/** - '**/CMakeLists.txt' schedule: - cron: 0 21 * * * workflow_dispatch: jobs: basictests: name: ${{ matrix.config.name }} runs-on: ${{ matrix.config.os }} strategy: fail-fast: false matrix: config: - { name: macos-14-clang-15-cmake, os: macos-14, cxx: clang++ } # default - { name: macos-15-gcc-14-cmake, os: macos-15, cxx: g++ } #installed - { name: macos-15-clang-cmake, os: macos-15, cxx: clang++ } # default - { name: ubuntu-22.04-clang-15-cmake, os: ubuntu-22.04, cxx: clang++-15 } #installed - { name: ubuntu-24.04-gcc-12-cmake, os: ubuntu-24.04, cxx: g++-14 } #installed - { name: ubuntu-22.04-gcc-12-cmake, os: ubuntu-22.04, cxx: g++-12 } #installed steps: - name: Install compilers on Linux run: | sudo apt-get update sudo apt-get install ${{ matrix.config.cxx }} -y if: runner.os == 'Linux' - name: Install dependencies on Linux run: | sudo apt-get install autoconf libleptonica-dev -y sudo apt-get install libarchive-dev libcurl4-openssl-dev -y sudo apt-get install libpango1.0-dev -y sudo apt-get install cabextract -y sudo apt-get install ninja-build -y cmake --version if: runner.os == 'Linux' - name: Install dependencies on macOS run: | brew install autoconf automake brew install leptonica # if ! brew list libarchive &>/dev/null; then # brew install libarchive # fi brew install pango if ! brew list icu4c &>/dev/null; then brew install icu4c fi if ! brew list curl &>/dev/null; then brew install curl fi brew install cabextract ninja --version cmake --version clang++ --version g++ --version if: runner.os == 'macOS' - name: Checkout Source uses: actions/checkout@v7 with: submodules: recursive - name: Configure Tesseract (Linux) run: | mkdir build mkdir inst cmake \ -S . \ -B build \ -G Ninja \ -DCMAKE_BUILD_TYPE=Release \ -DOPENMP_BUILD=OFF \ -DCMAKE_CXX_COMPILER=${{ matrix.config.cxx }} \ -DCMAKE_INSTALL_PREFIX:PATH=inst if: runner.os == 'Linux' - name: Configure Tesseract (macOS) shell: bash run: | set -e mkdir build mkdir inst cmake \ -S . \ -B build \ -G Ninja \ -DCMAKE_BUILD_TYPE=Release \ -DOPENMP_BUILD=OFF \ -DENABLE_UNITY_BUILD=ON \ -DCMAKE_CXX_COMPILER=${{ matrix.config.cxx }} \ -DCMAKE_INSTALL_PREFIX:PATH=inst if: runner.os == 'macOS' - name: Build Tesseract run: | cmake --build build --config Release --target install - name: Display Tesseract Version run: | build/inst/bin/tesseract -v - name: Display Training Tools Version run: | build/inst/bin/lstmtraining -v build/inst/bin/text2image -v - 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: List languages in different tessdata-dir run: | build/inst/bin/tesseract --list-langs --tessdata-dir ../tessdata build/inst/bin/tesseract --list-langs --tessdata-dir ../tessdata_best build/inst/bin/tesseract --list-langs --tessdata-dir ../tessdata_fast - name: Run Tesseract on test images in different languages run: | build/inst/bin/tesseract test/testing/phototest.tif - --oem 1 --tessdata-dir ../tessdata build/inst/bin/tesseract test/testing/raaj.tif - -l hin --oem 1 --tessdata-dir ../tessdata build/inst/bin/tesseract test/testing/viet.tif - -l vie --oem 1 --tessdata-dir ../tessdata build/inst/bin/tesseract test/testing/hebrew.png - -l heb --oem 1 --tessdata-dir ../tessdata build/inst/bin/tesseract test/testing/eurotext.tif - -l fra --oem 1 --tessdata-dir ../tessdata_best build/inst/bin/tesseract test/testing/arabic.tif - -l ara --oem 1 --psm 6 --tessdata-dir ../tessdata - name: Build and run basicapitest (Linux) run: | export "PKG_CONFIG_PATH=$GITHUB_WORKSPACE/build/inst/lib/pkgconfig/:$PKG_CONFIG_PATH" cd test ${{ matrix.config.cxx }} -o basicapitest testing/basicapitest.cpp "-I$GITHUB_WORKSPACE/build/inst/include" "-L$GITHUB_WORKSPACE/build/inst/lib" $(pkg-config --cflags --libs tesseract lept libarchive libcurl) -pthread -std=c++17 ./basicapitest if: runner.os == 'Linux' - name: Build and run basicapitest (macOS) run: | export "PKG_CONFIG_PATH=$GITHUB_WORKSPACE/build/inst/lib/pkgconfig/:$(brew --prefix)/opt/libarchive/lib/pkgconfig:$(brew --prefix)/Library/Homebrew/os/mac/pkgconfig/11:$PKG_CONFIG_PATH" cd test ${{ matrix.config.cxx }} -o basicapitest testing/basicapitest.cpp "-I$GITHUB_WORKSPACE/build/inst/include" "-L$GITHUB_WORKSPACE/build/inst/lib" $(pkg-config --cflags --libs tesseract lept libcurl) -pthread -std=c++17 ./basicapitest if: runner.os == 'macOS' - name: Display Compiler Version run: | ${{ matrix.config.cxx }} --version pwd ls -la # git log -3 --pretty=format:'%h %ad %s | %an' if: always()