Update README.md #15
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
name: Build Tesseract-Debug | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up GCC | |
if: matrix.os != 'windows-latest' | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.x" | |
- name: Install dependencies (Ubuntu) | |
if: matrix.os == 'ubuntu-latest' | |
run: sudo apt-get update && sudo apt-get install -y gcc make | |
- name: Install dependencies (macOS) | |
if: matrix.os == 'macos-latest' | |
run: brew install gcc make | |
- name: Install dependencies (Windows) | |
if: matrix.os == 'windows-latest' | |
run: choco install mingw make | |
- name: Build Tesseract-Debug | |
run: make | |
- name: Determine Binary Name | |
shell: bash | |
run: | | |
if [ "${{ matrix.os }}" == "windows-latest" ]; then | |
echo "BINARY_NAME=tesseract.exe" >> $GITHUB_ENV | |
else | |
echo "BINARY_NAME=tesseract" >> $GITHUB_ENV | |
fi | |
- name: Upload Tesseract-Debug Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: tesseract-debug-${{ matrix.os }} | |
path: ${{ env.BINARY_NAME }} |