[FEAT] Add argument parsing in ccextractor rust #823
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 Windows | |
env: | |
RUSTFLAGS: -Ctarget-feature=+crt-static | |
VCPKG_DEFAULT_TRIPLET: x64-windows-static | |
VCPKG_DEFAULT_BINARY_CACHE: C:\vcpkg\.cache | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- ".github/workflows/build_windows.yml" | |
- "**.c" | |
- "**.h" | |
- "windows/**" | |
pull_request: | |
types: [opened, synchronize, reopened] | |
paths: | |
- ".github/workflows/build_windows.yml" | |
- "**.c" | |
- "**.h" | |
- "windows/**" | |
jobs: | |
build_release: | |
runs-on: windows-2022 | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Setup MSBuild.exe | |
uses: microsoft/[email protected] | |
with: | |
msbuild-architecture: x64 | |
- name: Install llvm and clang | |
run: choco install llvm gpac | |
- name: Setup vcpkg | |
run: mkdir C:\vcpkg\.cache | |
- name: Cache vcpkg | |
id: cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
C:\vcpkg\.cache | |
key: vcpkg-${{ runner.os }} | |
- name: Install dependencies | |
run: vcpkg install leptonica tesseract ffmpeg --triplet x64-windows-static | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Install Win 10 SDK | |
uses: ilammy/msvc-dev-cmd@v1 | |
- name: build Release-Full | |
env: | |
LIBCLANG_PATH: "C:\\Program Files\\LLVM\\lib" | |
LLVM_CONFIG_PATH: "C:\\Program Files\\LLVM\\bin\\llvm-config" | |
CARGO_TARGET_DIR: "..\\..\\windows" | |
BINDGEN_EXTRA_CLANG_ARGS: -fmsc-version=0 | |
VCPKG_ROOT: C:\vcpkg | |
run: msbuild ccextractor.sln /p:Configuration=Release-Full /p:Platform=x64 | |
working-directory: ./windows | |
- name: Display version information | |
run: ./ccextractorwinfull.exe --version | |
working-directory: ./windows/x64/Release-Full | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: CCExtractor Windows Release build | |
path: | | |
./windows/x64/Release-Full/ccextractorwinfull.exe | |
./windows/x64/Release-Full/*.dll | |
build_debug: | |
runs-on: windows-2022 | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Setup MSBuild.exe | |
uses: microsoft/[email protected] | |
with: | |
msbuild-architecture: x64 | |
- name: Install llvm and clang | |
run: choco install llvm gpac | |
- name: Setup vcpkg | |
run: mkdir C:\vcpkg\.cache | |
- name: Cache vcpkg | |
id: cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
C:\vcpkg\.cache | |
key: vcpkg-${{ runner.os }} | |
- name: Install dependencies | |
run: vcpkg install leptonica tesseract ffmpeg --triplet x64-windows-static | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Install Win 10 SDK | |
uses: ilammy/msvc-dev-cmd@v1 | |
- name: build Debug-Full | |
env: | |
LIBCLANG_PATH: "C:\\Program Files\\LLVM\\lib" | |
LLVM_CONFIG_PATH: "C:\\Program Files\\LLVM\\bin\\llvm-config" | |
CARGO_TARGET_DIR: "..\\..\\windows" | |
BINDGEN_EXTRA_CLANG_ARGS: -fmsc-version=0 | |
VCPKG_ROOT: C:\vcpkg | |
run: msbuild ccextractor.sln /p:Configuration=Debug-Full /p:Platform=x64 | |
working-directory: ./windows | |
- name: Display version information | |
run: ./ccextractorwinfull.exe --version | |
working-directory: ./windows/x64/Debug-Full | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: CCExtractor Windows Debug build | |
path: | | |
./windows/x64/Debug-Full/ccextractorwinfull.exe | |
./windows/x64/Debug-Full/ccextractorwinfull.pdb | |
./windows/x64/Debug-Full/*.dll |