-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
No sw & strip many (optional) dependences. Added Linux-aarch64 build.
- Loading branch information
Showing
11 changed files
with
469 additions
and
415 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: linux-aarch64 | ||
on: push | ||
|
||
jobs: | ||
build: | ||
name: Build ${{ matrix.binary }} | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- binary: libtesseract64.so.aarch64 | ||
steps: | ||
- uses: actions/checkout@v3.1.0 | ||
- name: Install Dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y gcc-10-aarch64-linux-gnu g++-10-aarch64-linux-gnu pkg-config-aarch64-linux-gnu binutils-aarch64-linux-gnu autoconf ninja-build | ||
- name: Build Leptonica | ||
run: | | ||
echo "Building leptonica..." | ||
git clone --depth 1 https://github.com/DanBloomberg/leptonica.git | ||
cd leptonica | ||
./autogen.sh | ||
./configure '--host=aarch64-linux' '--with-pic' '--disable-shared' '--without-libpng' '--without-zlib' '--without-jpeg' '--without-libtiff' '--without-giflib' '--without-libwebp' '--without-libwebpmux' '--without-libopenjpeg' '--disable-programs' 'CC=aarch64-linux-gnu-gcc-10' 'CXX=aarch64-linux-gnu-g++-10' 'CFLAGS=-D DEFAULT_SEVERITY=L_SEVERITY_ERROR -g0 -O3' | ||
make | ||
sudo make install | ||
- name: Build Tesseract | ||
run: | | ||
echo "Building Tesseract..." | ||
git clone --depth 1 --branch 5.2.0 https://github.com/tesseract-ocr/tesseract.git | ||
cd tesseract | ||
./autogen.sh | ||
./configure '--host=aarch64-linux' '--with-pic' '--enable-visibility' '--disable-shared' '--disable-legacy' '--disable-graphics' '--disable-openmp' '--without-curl' '--without-archive' '--disable-doc' 'CC=aarch64-linux-gnu-gcc-10' 'CXX=aarch64-linux-gnu-g++-10' 'CXXFLAGS=-g0 -O3 -ffast-math' | ||
make | ||
sudo make install install | ||
- name: Build Library | ||
run: | | ||
mkdir -p build | ||
cmake -S . -B build -DCMAKE_SYSTEM_NAME=Linux -DCMAKE_SYSTEM_PROCESSOR=aarch64 -DCMAKE_C_COMPILER=/usr/bin/aarch64-linux-gnu-gcc-10 -DCMAKE_CXX_COMPILER=/usr/bin/aarch64-linux-gnu-g++-10 -G Ninja | ||
cmake --build build --config Release | ||
- uses: actions/upload-artifact@v3.1.0 | ||
with: | ||
name: ${{ matrix.binary }} | ||
path: build/${{ matrix.binary }} | ||
retention-days: 5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
name: linux | ||
on: push | ||
|
||
jobs: | ||
build: | ||
name: Build ${{ matrix.binary }} | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- binary: libtesseract64.so | ||
steps: | ||
- uses: actions/checkout@v3.1.0 | ||
- name: Install Dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y g++-10 autoconf ninja-build | ||
- name: Build Leptonica | ||
run: | | ||
echo "Building leptonica..." | ||
git clone --depth 1 https://github.com/DanBloomberg/leptonica.git | ||
cd leptonica | ||
./autogen.sh | ||
./configure '--with-pic' '--disable-shared' '--without-libpng' '--without-zlib' '--without-jpeg' '--without-libtiff' '--without-giflib' '--without-libwebp' '--without-libwebpmux' '--without-libopenjpeg' '--disable-programs' 'CXX=g++-10' 'CFLAGS=-D DEFAULT_SEVERITY=L_SEVERITY_ERROR -g0 -O3' | ||
make | ||
sudo make install | ||
- name: Build Tesseract | ||
run: | | ||
echo "Building Tesseract..." | ||
git clone --depth 1 --branch 5.2.0 https://github.com/tesseract-ocr/tesseract.git | ||
cd tesseract | ||
./autogen.sh | ||
./configure '--with-pic' '--disable-shared' '--disable-legacy' '--disable-graphics' '--disable-openmp' '--without-curl' '--without-archive' '--disable-doc' 'CXX=g++-10' 'CXXFLAGS=-DTESS_EXPORTS -g0 -O3 -ffast-math' | ||
make | ||
sudo make install install | ||
- name: Build Library | ||
run: | | ||
mkdir -p build | ||
cmake -S . -B build -G Ninja | ||
cmake --build build --config Release | ||
- name: Print Library Dependencies | ||
run: | | ||
ldd build/${{ matrix.binary }} | ||
- uses: actions/upload-artifact@v3.1.0 | ||
with: | ||
name: ${{ matrix.binary }} | ||
path: build/${{ matrix.binary }} | ||
retention-days: 5 | ||
|
||
test: | ||
name: Test ${{ matrix.binary }} | ||
runs-on: ubuntu-20.04 | ||
needs: build | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- binary: libtesseract64.so | ||
laz-url: https://sourceforge.net/projects/lazarus/files/Lazarus%20Linux%20amd64%20DEB/Lazarus%202.2.4/lazarus-project_2.2.4-0_amd64.deb | ||
fpc-url: | | ||
https://sourceforge.net/projects/lazarus/files/Lazarus%20Linux%20amd64%20DEB/Lazarus%202.2.4/fpc-laz_3.2.2-210709_amd64.deb | ||
https://sourceforge.net/projects/lazarus/files/Lazarus%20Linux%20amd64%20DEB/Lazarus%202.2.4/fpc-src_3.2.2-210709_amd64.deb | ||
steps: | ||
- uses: actions/checkout@v3.1.0 | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: ${{ matrix.binary }} | ||
|
||
- name: Install Lazarus | ||
uses: ollydev/setup-lazarus@v3.2 | ||
with: | ||
laz-url: ${{ matrix.laz-url }} | ||
fpc-url: ${{ matrix.fpc-url }} | ||
|
||
- name: Test | ||
run: | | ||
lazbuild test/test.lpi | ||
test/test ${{ matrix.binary }} 5.2.0 |
Oops, something went wrong.