v4l2rtspserver/.circleci/config.yml

15 lines
449 B
YAML
Raw Normal View History

2018-01-28 15:34:11 +00:00
version: 2
jobs:
build:
docker:
- image: circleci/ubuntu-server
steps:
- checkout
2018-01-28 19:37:46 +00:00
- run: sudo apt-get update; sudo apt-get install -y --no-install-recommends cmake autoconf automake libtool git make g++ liblog4cpp5-dev liblivemedia-dev
2018-02-04 17:46:17 +00:00
- run: cmake . && make
- run: cpack .
- run: cpack -G TGZ .
- run: mkdir pkg && cp *.deb pkg && cp *.tgz pkg
- store_artifacts:
2018-02-04 17:43:32 +00:00
path: pkg