2018-09-21 15:46:34 +00:00
|
|
|
language: rust
|
|
|
|
rust:
|
|
|
|
- stable
|
2018-09-21 16:00:07 +00:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- libgstreamer1.0-dev
|
|
|
|
- libgstreamer-plugins-base1.0-dev
|
|
|
|
- gstreamer1.0-plugins-base
|
|
|
|
- gstreamer1.0-plugins-good
|
|
|
|
- gstreamer1.0-plugins-bad
|
|
|
|
- gstreamer1.0-plugins-ugly
|
|
|
|
- gstreamer1.0-libav
|
2018-09-25 11:28:38 +00:00
|
|
|
before_install:
|
|
|
|
- curl -kLO https://slepin.fr/obs-ndi/ci/ndisdk-slim-v3.5-linux.zip -f --retry 5 && unzip ./ndisdk-slim-v3.5-linux.zip && rm ./ndisdk-slim-v3.5-linux.zip
|
|
|
|
- sudo cp ndisdk/lib/x86_64-linux-gnu/libndi.so.3.5.1 /usr/local/lib/libndi.so && sudo ldconfig
|
|
|
|
- curl -L https://people.freedesktop.org/~slomo/gstreamer-1.14.3.tar.gz | tar xz
|
|
|
|
- sed -i "s;prefix=/root/gstreamer;prefix=$PWD/gstreamer;g" $PWD/gstreamer/lib/x86_64-linux-gnu/pkgconfig/*.pc
|
|
|
|
- export PKG_CONFIG_PATH=$PWD/gstreamer/lib/x86_64-linux-gnu/pkgconfig
|
|
|
|
- export GST_PLUGIN_SYSTEM_PATH=$PWD/gstreamer/lib/x86_64-linux-gnu/gstreamer-1.0
|
|
|
|
- export GST_PLUGIN_SCANNER=$PWD/gstreamer/libexec/gstreamer-1.0/gst-plugin-scanner
|
|
|
|
- export PATH=$PATH:$PWD/gstreamer/bin
|
|
|
|
- export LD_LIBRARY_PATH=$PWD/gstreamer/lib/x86_64-linux-gnu:$LD_LIBRARY_PATH
|
2018-09-21 15:46:34 +00:00
|
|
|
install:
|
|
|
|
- rustup component add rustfmt-preview
|
|
|
|
- rustup component add clippy-preview
|
|
|
|
script:
|
|
|
|
- cargo fmt -- --check
|
2019-06-25 16:20:50 +00:00
|
|
|
- touch ./src/*.rs && cargo clippy -- -A clippy::cast_ptr_alignment -A clippy::new_ret_no_self
|
2018-09-21 15:46:34 +00:00
|
|
|
- cargo build
|