Add a step to run cargo build w/o features (#52)

This commit is contained in:
gusto 2023-01-19 16:34:35 +02:00 committed by GitHub
parent dbef2906b5
commit 613d9ac1b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -30,6 +30,7 @@ pipeline {
stage('Build') {
steps {
sh 'cargo build'
sh 'cargo build --all --all-features'
}
}

View File

@ -29,6 +29,7 @@ pipeline {
stage('Build') {
steps { script {
nix.shell('cargo build')
nix.shell('cargo build --all --all-features')
} }
}