From 0ba2937a8a958cef08419ceddeb5a84d343b2d59 Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Thu, 10 Mar 2022 13:13:19 -0600 Subject: [PATCH] Update CI since build environment doesn't run a newer speech-dispatcher. --- .gitlab-ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0c859de..d1e8365 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,15 +11,13 @@ before_script: test: stage: test script: - - cargo test + - cargo test --no-default-features publish: stage: publish script: - cargo login $CARGO_TOKEN - - cargo package --manifest-path speech-dispatcher-sys/Cargo.toml - cargo publish --manifest-path speech-dispatcher-sys/Cargo.toml || true - - cargo package --manifest-path speech-dispatcher/Cargo.toml - - cargo publish --manifest-path speech-dispatcher/Cargo.toml + - cargo publish --no-default-features --manifest-path speech-dispatcher/Cargo.toml only: - tags