2022-06-25 11:31:30 +08:00
|
|
|
name: macOS
|
2022-02-02 20:34:50 +08:00
|
|
|
|
2022-04-19 19:30:55 +08:00
|
|
|
on: [push, pull_request]
|
2022-02-02 20:34:50 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: macOS-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: 下载submodule源码
|
2022-06-19 15:54:30 +08:00
|
|
|
run: mv -f .gitmodules_github .gitmodules && git submodule sync && git submodule update --init
|
2022-02-02 20:34:50 +08:00
|
|
|
|
|
|
|
# - name: 安装brew
|
|
|
|
# run: ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
|
|
|
|
#
|
|
|
|
# - name: brew安装依赖库(非必选)
|
|
|
|
# run: brew update && brew install cmake openssl sdl2 ffmpeg
|
|
|
|
|
|
|
|
# - name: 下载 SRTP
|
|
|
|
# uses: actions/checkout@v2
|
|
|
|
# with:
|
|
|
|
# repository: cisco/libsrtp
|
|
|
|
# fetch-depth: 1
|
|
|
|
# ref: v2.3.0
|
|
|
|
# path: 3rdpart/libsrtp
|
|
|
|
#
|
|
|
|
# - name: 编译 SRTP
|
|
|
|
# run: cd 3rdpart/libsrtp && ./configure --enable-openssl && make -j4 && sudo make install
|
|
|
|
|
|
|
|
- name: 编译
|
2022-06-19 19:01:40 +08:00
|
|
|
run: mkdir -p build && cd build && cmake .. && make -j $(nproc)
|
2022-02-02 20:34:50 +08:00
|
|
|
|
|
|
|
- name: 运行MediaServer
|
2023-02-12 22:44:37 +08:00
|
|
|
run: pwd && cd release/darwin/Debug && sudo ./MediaServer -d &
|
2022-02-02 20:34:50 +08:00
|
|
|
|
|
|
|
|