From 1c89b4e4c0c8e9b83464fdc3320365364f9b7769 Mon Sep 17 00:00:00 2001 From: Gibson Fahnestock Date: Mon, 26 Oct 2020 23:54:18 +0000 Subject: [PATCH] docs(release): test before build to ensure we don't build CI feature --- docs/RELEASE.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/RELEASE.md b/docs/RELEASE.md index c669046..849b0f6 100644 --- a/docs/RELEASE.md +++ b/docs/RELEASE.md @@ -36,14 +36,14 @@ The Release process is still somewhat manual, and only works on macOS for now. ```shell # Check the documentation is buildable. cargo doc && - # Build darwin. - cargo build --release && # Test Darwin cargo test --release --features=CI && - # Builds musl static Linux binaries. - bin/cargo-docker build --release && + # Build Darwin (without the CI feature). + cargo build --release && # Tests musl static Linux binaries. - bin/cargo-docker + bin/cargo-docker && + # Builds musl static Linux binaries. + bin/cargo-docker build --release ``` 5. Publish to crates.io: ```shell