[FEAT] Add argument parsing in ccextractor rust #784
Workflow file for this run
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 CCExtractor on Linux | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- '.github/workflows/build_linux.yml' | |
- '**.c' | |
- '**.h' | |
- '**Makefile**' | |
- 'linux/**' | |
- 'package_creators/**' | |
- 'src/rust/**' | |
pull_request: | |
types: [opened, synchronize, reopened] | |
paths: | |
- '.github/workflows/build_linux.yml' | |
- '**.c' | |
- '**.h' | |
- '**Makefile**' | |
- 'linux/**' | |
- 'package_creators/**' | |
- 'src/rust/**' | |
jobs: | |
build_shell: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install tesseract | |
run: sudo apt-get install libtesseract-dev | |
- uses: actions/checkout@v3 | |
- name: build | |
run: ./build | |
working-directory: ./linux | |
- name: Display version information | |
run: ./ccextractor --version | |
working-directory: ./linux | |
- name: Prepare artifacts | |
run: mkdir ./linux/artifacts | |
- name: Copy release artifact | |
run: cp ./linux/ccextractor ./linux/artifacts/ | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: CCExtractor Linux build | |
path: ./linux/artifacts | |
build_autoconf: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: run autogen | |
run: ./autogen.sh | |
working-directory: ./linux | |
- name: configure | |
run: ./configure --enable-debug | |
working-directory: ./linux | |
- name: make | |
run: make | |
working-directory: ./linux | |
- name: Display version information | |
run: ./ccextractor --version | |
working-directory: ./linux | |
cmake: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: cmake | |
run: mkdir build && cd build && cmake ../src | |
- name: build | |
run: make -j$(nproc) | |
working-directory: build | |
- name: Display version information | |
run: ./build/ccextractor --version | |
cmake_ocr_hardsubx: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: dependencies | |
run: sudo apt update && sudo apt install libtesseract-dev libavformat-dev libavdevice-dev libswscale-dev yasm | |
- name: cmake | |
run: | | |
mkdir build && cd build | |
cmake -DWITH_OCR=ON -DWITH_HARDSUBX=ON ../src | |
- name: build | |
run: | | |
make -j$(nproc) | |
working-directory: build | |
- name: Display version information | |
run: ./build/ccextractor --version | |
build_rust: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
src/rust/.cargo/registry | |
src/rust/.cargo/git | |
src/rust/target | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: ${{ runner.os }}-cargo- | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: build | |
run: cargo build | |
working-directory: ./src/rust |