From 393c73cedf9528ff527f7906242e57b8c4e3971f Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 26 Sep 2023 17:11:39 +0200 Subject: [PATCH] re-enable failing docs builds --- automation/Jenkinsfile | 4 +--- release-checklist.md | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/automation/Jenkinsfile b/automation/Jenkinsfile index 7b7d35c..b9d4ea4 100644 --- a/automation/Jenkinsfile +++ b/automation/Jenkinsfile @@ -20,9 +20,7 @@ pipeline { } stage('Docs') { steps { - catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { - sh 'cargo +nightly doc --all-features' - } + sh 'cargo +nightly doc --all-features' } } stage('Rustfmt') { diff --git a/release-checklist.md b/release-checklist.md index 1a5defc..8552f3f 100644 --- a/release-checklist.md +++ b/release-checklist.md @@ -4,7 +4,7 @@ Checklist for new releases # Pre-Release 1. Make sure any new modules are documented sufficiently enough and check docs with - `cargo doc --all-features --open`. + `cargo +nightly doc --all-features --open`. 2. Bump version specifier in `Cargo.toml`. 3. Update `CHANGELOG.md`: Convert `unreleased` section into version section with date and add new `unreleased` section.