From a50a6a4bddbcaa7902a555bec5b8090cea9a0f27 Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Mon, 29 Aug 2022 16:36:33 -0500 Subject: [PATCH] Should now build with default features. --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d1e8365..67bf2ad 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,13 +11,13 @@ before_script: test: stage: test script: - - cargo test --no-default-features + - cargo test publish: stage: publish script: - cargo login $CARGO_TOKEN - cargo publish --manifest-path speech-dispatcher-sys/Cargo.toml || true - - cargo publish --no-default-features --manifest-path speech-dispatcher/Cargo.toml + - cargo publish --manifest-path speech-dispatcher/Cargo.toml only: - tags