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/.circleci/config.yml

15 lines
436 B
YAML

version: 2
jobs:
build:
docker:
7 years ago
- image: heroku/heroku:16
steps:
- checkout
- run: apt-get update; apt-get install -y --no-install-recommends cmake autoconf automake libtool git make g++ liblog4cpp5-dev liblivemedia-dev
- run: cmake . && make
- run: cpack .
- run: cpack -G TGZ .
- run: mkdir pkg && cp *.deb pkg && cp *.tar.gz pkg
- store_artifacts:
path: pkg