Skip to content

Adding a comment about how to verify custom codec tables. #18

Adding a comment about how to verify custom codec tables.

Adding a comment about how to verify custom codec tables. #18

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
windows:
name: Build on ${{ matrix.os }} with ${{ matrix.compiler_version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
compiler_version: ['default']
os: [windows-latest]
steps:
- uses: actions/checkout@v2
- uses: FedericoCarboni/setup-ffmpeg@v1
id: setup-ffmpeg
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Compile and test in Debug.
run: bash compile.sh Debug
- name: Compile and test in Release.
run: bash compile.sh Release
- name: Compile and test in RelWithDebInfo.
run: bash compile.sh RelWithDebInfo
- name: Compile and test in MinSizeRel.
run: bash compile.sh MinSizeRel
macOS:
name: Build on ${{ matrix.os }} with ${{ matrix.compiler_version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
compiler_version: ['default']
os: [macOS-latest]
steps:
- uses: actions/checkout@v2
- uses: FedericoCarboni/setup-ffmpeg@v1
id: setup-ffmpeg
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Compile and test in Debug.
run: bash compile.sh Debug
- name: Compile and test in Release.
run: bash compile.sh Release
- name: Compile and test in RelWithDebInfo.
run: bash compile.sh RelWithDebInfo
- name: Compile and test in MinSizeRel.
run: bash compile.sh MinSizeRel
linux:
name: Build on ${{ matrix.os }} with ${{ matrix.compiler_version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
compiler_version: ['default']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: FedericoCarboni/setup-ffmpeg@v1
id: setup-ffmpeg
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Compile and test in Debug.
run: bash compile.sh Debug
- name: Compile and test in Release.
run: bash compile.sh Release
- name: Compile and test in RelWithDebInfo.
run: bash compile.sh RelWithDebInfo
- name: Compile and test in MinSizeRel.
run: bash compile.sh MinSizeRel