Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
steps:
- name: Install dependencies
run: sudo apt update && sudo apt-get install libgpac-dev libtesseract-dev libavcodec-dev libavdevice-dev libx11-dev libxcb1-dev libxcb-shm0-dev
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: build
run: ./build -hardsubx
working-directory: ./linux
Expand All @@ -47,7 +47,7 @@ jobs:
steps:
- name: Install dependencies
run: sudo apt update && sudo apt-get install libgpac-dev
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: run autogen
run: ./autogen.sh
working-directory: ./linux
Expand All @@ -65,7 +65,7 @@ jobs:
steps:
- name: Install dependencies
run: sudo apt update && sudo apt-get install libgpac-dev
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: cmake
run: mkdir build && cd build && cmake ../src
- name: build
Expand All @@ -76,7 +76,7 @@ jobs:
cmake_ocr_hardsubx:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install dependencies
run: sudo apt update && sudo apt install libgpac-dev libtesseract-dev libavformat-dev libavdevice-dev libswscale-dev yasm
- name: cmake
Expand All @@ -94,7 +94,7 @@ jobs:
steps:
- name: Install dependencies
run: sudo apt update && sudo apt-get install libgpac-dev
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: cache
uses: actions/cache@v4
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
steps:
- name: Install dependencies
run: brew install pkg-config autoconf automake libtool tesseract leptonica gpac
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: build
run: ./build.command
working-directory: ./mac
Expand All @@ -45,7 +45,7 @@ jobs:
build_autoconf:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install dependencies
run: brew install pkg-config autoconf automake libtool gpac
- name: run autogen
Expand All @@ -63,10 +63,10 @@ jobs:
cmake:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: dependencies
run: brew install gpac
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: cmake
run: mkdir build && cd build && cmake ../src
- name: build
Expand All @@ -77,7 +77,7 @@ jobs:
build_rust:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: cache
uses: actions/cache@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: windows-2022
steps:
- name: Check out repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup MSBuild.exe
uses: microsoft/[email protected]
with:
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
runs-on: windows-2022
steps:
- name: Check out repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup MSBuild.exe
uses: microsoft/[email protected]
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Format code
run: |
find src/ -type f -not -path "src/thirdparty/*" -not -path "src/lib_ccx/zvbi/*" -name '*.c' -not -path "src/GUI/icon_data.c" | xargs clang-format -i
Expand All @@ -33,7 +33,7 @@ jobs:
run:
working-directory: ${{ matrix.workdir }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: cache
uses: actions/cache@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/}
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
create_linux_package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
path: ./ccextractor
- name: Create .tar.gz without git and windows folders
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
run:
working-directory: ./src/rust
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: cache
uses: actions/cache@v4
with:
Expand Down
Loading