gst-plugins-rs/.gitlab-ci.yml

86 lines
2.2 KiB
YAML
Raw Normal View History

stages:
- "lint"
2018-11-04 16:52:31 +00:00
- "test"
.cargo_cache: &cache
cache:
key: "gst"
paths:
- ".cargo_cache/"
.cargo_test_template: &cargo_test
stage: "test"
variables:
G_DEBUG: "fatal_warnings"
SODIUM_USE_PKG_CONFIG: "true"
DEPENDENCIES: |
curl
file
libsodium-dev
libssl-dev
liborc-0.4-dev
libglib2.0-dev
libgdk-pixbuf2.0-dev
libgtk-3-dev
libxml2-dev
libegl1-mesa
libgles2-mesa
libgl1-mesa-dri
libgl1-mesa-glx
libwayland-egl1-mesa
<<: *cache
before_script:
- apt-get update -yqq
- apt-get install -yqq --no-install-recommends $DEPENDENCIES
# Only stuff inside the repo directory can be cached
# Override the CARGO_HOME variable to force its location
- export CARGO_HOME="${PWD}/.cargo_cache"
- mkdir -p precompiled-gst && cd precompiled-gst
2019-04-24 09:01:21 +00:00
- curl -L https://people.freedesktop.org/~slomo/gstreamer-1.16.0.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
- rustc --version
- cargo --version
script:
- cargo build --all --color=always
- cargo test --all --color=always
- cargo build --all-features --all --color=always
- cargo test --all-features --all --color=always
- cargo build --all-features --examples --all --color=always
test 1.34:
# 1.34 img
2018-11-04 16:52:25 +00:00
# https://hub.docker.com/_/rust/
image: "rust:1.34-slim"
2018-11-04 16:52:25 +00:00
<<: *cargo_test
test stable:
# Stable img
# https://hub.docker.com/_/rust/
image: "rust:slim"
<<: *cargo_test
test nightly:
# Nightly
# https://hub.docker.com/r/rustlang/rust/
image: "rustlang/rust:nightly-slim"
allow_failure: true
<<: *cargo_test
rustfmt:
2018-12-09 14:57:41 +00:00
image: "rust:slim"
stage: "lint"
script:
2018-12-09 14:57:41 +00:00
- rustup component add rustfmt
- cargo fmt --version
- cargo fmt -- --color=always --check