You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
v4l2rtspserver/.github/workflows/ccpp.yml

22 lines
345 B
YAML

5 years ago
name: C/C++ CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
5 years ago
- name: cmake
run: cmake .
- name: make
run: make
- name: cpack
run: cpack -B $(pwd)/artifact
5 years ago
- uses: actions/upload-artifact@v1
with:
name: pkg
path: artifact