diff --git a/ci/Jenkinsfile.prs.linux b/ci/Jenkinsfile.prs.linux index 0532abdb..34ff07d1 100644 --- a/ci/Jenkinsfile.prs.linux +++ b/ci/Jenkinsfile.prs.linux @@ -22,9 +22,9 @@ pipeline { stages { stage('Check') { steps { - sh 'cargo check' + sh 'cargo check --all --all-features' sh 'cargo fmt -- --check' - sh 'cargo clippy' + sh 'cargo clippy --all --all-features -- --deny warnings' } } diff --git a/ci/Jenkinsfile.prs.macos b/ci/Jenkinsfile.prs.macos index 5a256de1..2566e549 100644 --- a/ci/Jenkinsfile.prs.macos +++ b/ci/Jenkinsfile.prs.macos @@ -21,9 +21,9 @@ pipeline { stages { stage('Check') { steps { script { - nix.shell('cargo check') + nix.shell('cargo check --all --all-features') nix.shell('cargo fmt -- --check') - nix.shell('cargo clippy') + nix.shell('cargo clippy --all --all-features -- --deny warnings') } } }