Cmake with OCR and Hardsubx in different job

This commit is contained in:
Nils André-Chang 2020-01-19 20:30:04 +00:00
parent 812734fd2a
commit 746806dcef

View File

@ -51,6 +51,15 @@ jobs:
run: make
working-directory: ./linux
cmake:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: cmake
run: mkdir build && cd build && cmake ../src
- name: build
run: make -j$(nproc)
working-directory: build
cmake_ocr_hardsubx:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1