Files
media-server/.github/workflows/ccpp.yml
Dw9 70764f90c6 Update ccpp.yml
解析ci缺少avcodec依赖编译不过
2021-06-25 16:31:46 +08:00

34 lines
616 B
YAML

name: C/C++ CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
path: media-server
- name: Sdk
uses: actions/checkout@v2
with:
repository: ireader/sdk
path: sdk
- name: avcodec
uses: actions/checkout@v2
with:
repository: ireader/avcodec
path: avcodec
- name: Make
run: make
working-directory: media-server
# - name: Make check
# run: make test
# working-directory: media-server