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

55 lines
1.8 KiB
YAML

version: 2
jobs:
build_x86_64:
working_directory: ~/v4l2rtspServer
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
build_rpi:
working_directory: ~/v4l2rtspServer
docker:
- image: heroku/heroku:16
steps:
- checkout
- run: apt-get update; apt-get install -y --no-install-recommends cmake autoconf automake libtool git make
- run: git clone --depth 1 https://github.com/raspberrypi/tools.git rpi_tools
- run: echo 'export PATH=${CIRCLE_WORKING_DIRECTORY}/rpi_tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64/bin:$PATH' >> $BASH_ENV
- run: cmake -DCMAKE_TOOLCHAIN_FILE=${CIRCLE_WORKING_DIRECTORY}/raspberry.toolchain . && make
- run: cpack .
- run: cpack -G TGZ .
- run: mkdir pkg && cp *.deb pkg && cp *.tar.gz pkg
- store_artifacts:
path: pkg
build_mips:
working_directory: ~/v4l2rtspServer
docker:
- image: heroku/heroku:16
steps:
- checkout
- run: apt-get update; apt-get install -y --no-install-recommends cmake autoconf automake libtool git make g++-mips-linux-gnu
- run: cmake -DCMAKE_TOOLCHAIN_FILE=${CIRCLE_WORKING_DIRECTORY}/mips.toolchain . && make
- run: cpack .
- run: cpack -G TGZ .
- run: mkdir pkg && cp *.deb pkg && cp *.tar.gz pkg
- store_artifacts:
path: pkg
workflows:
version: 2
build:
jobs:
- build_x86_64
- build_rpi
- build_mips