mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-27 20:59:36 +08:00
24 lines
509 B
YAML
24 lines
509 B
YAML
name: sw
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [windows-latest, ubuntu-latest, macOS-latest]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: egorpugin/sw-action@master
|
|
|
|
- name: build
|
|
if: matrix.os == 'windows-latest'
|
|
run: ./sw -static -shared -platform x86,x64 -config d,r build
|
|
|
|
- name: build
|
|
if: matrix.os != 'windows-latest'
|
|
run: ./sw -static -shared -config d,r build
|