This magically fixes the upload #51

Merged
muellerr merged 4 commits from cov-deployment into main 2023-12-07 13:50:22 +01:00
Showing only changes of commit c45846819b - Show all commits

View File

@ -67,6 +67,7 @@ pipeline {
sh 'cargo clear' sh 'cargo clear'
sh 'cargo test --all-features' 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/'
sh 'ls -lr ./target/debug/coverage/'
sshagent(credentials: ['documentation-buildfix']) { sshagent(credentials: ['documentation-buildfix']) {
// Deploy to Apache webserver // Deploy to Apache webserver
sh 'rsync --mkpath -r --delete ./target/debug/coverage/ buildfix@documentation.irs.uni-stuttgart.de:/projects/spacepackets-rs/coverage/latest/' sh 'rsync --mkpath -r --delete ./target/debug/coverage/ buildfix@documentation.irs.uni-stuttgart.de:/projects/spacepackets-rs/coverage/latest/'