prepare new beta version #48

Merged
muellerr merged 2 commits from prep_v0.7.0-beta.3 into main 2023-12-06 20:02:28 +01:00
Showing only changes of commit 0ddb9c69f1 - Show all commits

View File

@ -62,10 +62,9 @@ pipeline {
} }
} }
steps { steps {
script {
withEnv(['RUSTFLAGS=-Cinstrument-coverage', 'LLVM_PROFILE_FILE=target/coverage/%p-%m.profraw']) { withEnv(['RUSTFLAGS=-Cinstrument-coverage', 'LLVM_PROFILE_FILE=target/coverage/%p-%m.profraw']) {
echo "Executing tests with coverage" echo "Executing tests with coverage"
sh 'cargo test' sh 'cargo test --all-features'
sh 'grcov . -s . --binary-path ./target/debug -t html --branch --ignore-not-existing -o ./target/debug/coverage/' sh 'grcov . -s . --binary-path ./target/debug -t html --branch --ignore-not-existing -o ./target/debug/coverage/'
sshagent(credentials: ['documentation-buildfix']) { sshagent(credentials: ['documentation-buildfix']) {
// Deploy to Apache webserver // Deploy to Apache webserver
@ -75,5 +74,4 @@ pipeline {
} }
} }
} }
}
} }