mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-10-31 00:37:39 +08:00
17 lines
258 B
YAML
17 lines
258 B
YAML
name: C/C++ CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: build
|
|
run: ./build_for_linux.sh
|
|
- name: run
|
|
run: cd ZLMediaKit/release/linux/Debug && ./MediaServer -d
|
|
|