Skip to content

Commit

Permalink
Trigger GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Tarun-Arora committed Mar 23, 2023
1 parent d9fbda7 commit 9baf874
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ name: Build CCExtractor on Linux
on:
workflow_dispatch:
push:
paths:
pull_request:

jobs:
build_shell:
runs-on: ubuntu-latest
steps:
- name: Install tesseract
run: sudo apt-get install libtesseract-dev
- uses: actions/checkout@v3
- uses: actions/checkout@v2.3.4
- name: build
run: ./build
working-directory: ./linux
Expand All @@ -21,14 +22,14 @@ jobs:
run: mkdir ./linux/artifacts
- name: Copy release artifact
run: cp ./linux/ccextractor ./linux/artifacts/
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v2
with:
name: CCExtractor Linux build
path: ./linux/artifacts
build_autoconf:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v2.3.4
- name: run autogen
run: ./autogen.sh
working-directory: ./linux
Expand All @@ -44,7 +45,7 @@ jobs:
cmake:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v2.3.4
- name: cmake
run: mkdir build && cd build && cmake ../src
- name: build
Expand All @@ -55,7 +56,7 @@ jobs:
cmake_ocr_hardsubx:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v2.3.4
- name: dependencies
run: sudo apt update && sudo apt install libtesseract-dev libavformat-dev libavdevice-dev libswscale-dev yasm
- name: cmake
Expand All @@ -71,9 +72,9 @@ jobs:
build_rust:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v2.3.4
- name: cache
uses: actions/cache@v3
uses: actions/cache@v2
with:
path: |
src/rust/.cargo/registry
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
- ".github/workflows/build_windows.yml"
- "**.h"
- "windows/**"
pull_request:

jobs:
build_non_ocr_release:
Expand Down

0 comments on commit 9baf874

Please sign in to comment.