From 7dd5a40d21d3d1e2c0bf3b04da22f4b044594db0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20Li=C3=A9tar?= Date: Tue, 13 Feb 2018 02:07:28 +0100 Subject: [PATCH] travis: Use `cargo --locked` everywhere This will prevent `Cargo.lock` from getting out of sync --- .travis.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index b1c30b25..474ff039 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,13 +26,13 @@ before_script: fi script: - - cargo build --no-default-features - - cargo build --no-default-features --features "with-tremor" - - cargo build --no-default-features --features "with-vorbis" - - cargo build --no-default-features --features "portaudio-backend" - - cargo build --no-default-features --features "pulseaudio-backend" - - cargo build --no-default-features --features "alsa-backend" - - cargo build --no-default-features --target armv7-unknown-linux-gnueabihf + - cargo build --locked --no-default-features + - cargo build --locked --no-default-features --features "with-tremor" + - cargo build --locked --no-default-features --features "with-vorbis" + - cargo build --locked --no-default-features --features "portaudio-backend" + - cargo build --locked --no-default-features --features "pulseaudio-backend" + - cargo build --locked --no-default-features --features "alsa-backend" + - cargo build --locked --no-default-features --target armv7-unknown-linux-gnueabihf notifications: email: false