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-21 15:46:34 +00:00
|
|
|
install:
|
|
|
|
- rustup component add rustfmt-preview
|
|
|
|
- rustup component add clippy-preview
|
2018-09-21 16:00:07 +00:00
|
|
|
- curl -kLO https://slepin.fr/obs-ndi/ci/ndisdk-slim-v3.5-linux.zip -f --retry 5 && unzip ./ndisdk-slim-v3.5-linux.zip
|
2018-09-21 15:46:34 +00:00
|
|
|
script:
|
|
|
|
- cargo fmt -- --check
|
|
|
|
- touch ./src/*.rs && cargo clippy -- -D warnings
|
|
|
|
- cargo build
|