完成workflows测试

This commit is contained in:
xiongziliang 2019-11-14 15:14:25 +08:00
parent c8ba6fd73f
commit a3e67a1306

View File

@ -9,8 +9,16 @@ jobs:
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: build
run: ./build_for_linux.sh - name: 下载submodule源码
- name: run run: git submodule update --init
run: cd ZLMediaKit/release/linux/Debug && ./MediaServer -d
- name: apt-get安装依赖库(非必选)
run: sudo apt-get install -y cmake libmysqlclient-dev libssl-dev libx264-dev libfaac-dev libmp4v2-dev libsdl-dev libavcodec-dev libavutil-dev
- name: 编译
run: mkdir -p linux_build && cd linux_build && cmake .. && make -j4
- name: 运行MediaServer
run: pwd && cd release/linux/Debug && ./MediaServer -h