2022-06-25 11:25:07 +08:00
|
|
|
name: Linux
|
2019-11-14 14:45:12 +08:00
|
|
|
|
2022-04-19 19:30:14 +08:00
|
|
|
on: [push, pull_request]
|
2023-12-01 20:20:42 +08:00
|
|
|
|
2019-11-14 14:45:12 +08:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
2021-06-26 17:57:05 +08:00
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
|
2019-11-14 14:45:12 +08:00
|
|
|
steps:
|
2023-12-01 20:20:42 +08:00
|
|
|
- uses: actions/checkout@v1
|
2019-11-14 15:14:25 +08:00
|
|
|
|
|
|
|
- name: 下载submodule源码
|
2022-06-19 15:54:30 +08:00
|
|
|
run: mv -f .gitmodules_github .gitmodules && git submodule sync && git submodule update --init
|
2019-11-14 15:14:25 +08:00
|
|
|
|
|
|
|
- name: apt-get安装依赖库(非必选)
|
2022-07-28 23:18:23 +08:00
|
|
|
run: sudo apt-get update && sudo apt-get install -y cmake libssl-dev libsdl-dev libavcodec-dev libavutil-dev libswscale-dev libresample-dev libusrsctp-dev
|
2019-11-14 15:14:25 +08:00
|
|
|
|
2021-06-26 17:58:00 +08:00
|
|
|
- name: 下载 SRTP
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
repository: cisco/libsrtp
|
|
|
|
fetch-depth: 1
|
|
|
|
ref: v2.3.0
|
|
|
|
path: 3rdpart/libsrtp
|
|
|
|
|
|
|
|
- name: 编译 SRTP
|
2024-06-01 18:24:02 +08:00
|
|
|
run: cd 3rdpart/libsrtp && ./configure --enable-openssl && make -j $(nproc) && sudo make install
|
2021-06-26 17:58:00 +08:00
|
|
|
|
2019-11-14 15:14:25 +08:00
|
|
|
- name: 编译
|
2024-06-01 18:24:02 +08:00
|
|
|
run: mkdir -p linux_build && cd linux_build && cmake .. -DCMAKE_BUILD_TYPE=Release -DENABLE_FFMPEG=true && make -j $(nproc)
|
2019-11-14 15:14:25 +08:00
|
|
|
|
2024-06-01 18:24:02 +08:00
|
|
|
- name: 设置环境变量
|
|
|
|
run: |
|
|
|
|
echo "BRANCH=$(echo ${GITHUB_REF#refs/heads/} | tr -s "/\?%*:|\"<>" "_")" >> $GITHUB_ENV
|
|
|
|
echo "BRANCH2=$(echo ${GITHUB_REF#refs/heads/} )" >> $GITHUB_ENV
|
|
|
|
echo "DATE=$(date +%Y-%m-%d)" >> $GITHUB_ENV
|
2019-11-14 15:22:15 +08:00
|
|
|
|
2024-06-01 18:24:02 +08:00
|
|
|
- name: 打包二进制
|
|
|
|
id: upload
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: ${{ github.workflow }}_${{ env.BRANCH }}_${{ env.DATE }}
|
|
|
|
path: release/*
|
|
|
|
if-no-files-found: error
|
|
|
|
retention-days: 1
|
|
|
|
|
|
|
|
- name: issue评论
|
|
|
|
if: github.event_name != 'pull_request'
|
|
|
|
uses: actions/github-script@v7
|
|
|
|
with:
|
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
script: |
|
|
|
|
github.rest.issues.createComment({
|
|
|
|
issue_number: 483,
|
|
|
|
owner: context.repo.owner,
|
|
|
|
repo: context.repo.repo,
|
|
|
|
body: '- 下载地址: [${{ github.workflow }}_${{ env.BRANCH }}_${{ env.DATE }}](${{ steps.upload.outputs.artifact-url }})\n'
|
|
|
|
+ '- 分支: ${{ env.BRANCH2 }}\n'
|
|
|
|
+ '- git hash: ${{ github.sha }} \n'
|
|
|
|
+ '- 编译日期: ${{ env.DATE }}\n'
|
|
|
|
+ '- 打包ci名: ${{ github.workflow }}\n'
|
|
|
|
+ '- 说明: 本二进制在ubuntu-20.04(x64)上编译,请确保您的机器系统不低于此版本,并提前`sudo apt-get install -y libssl-dev libsdl-dev libavcodec-dev libavutil-dev libswscale-dev libresample-dev libusrsctp-dev`安装依赖项\n'
|
|
|
|
})
|