Merge pull request 'fix deploy path' (#53) from fix-deployment-path into main
Rust/spacepackets/pipeline/head This commit looks good

Reviewed-on: #53
This commit was merged in pull request #53.
This commit is contained in:
2023-12-12 11:53:32 +01:00
+1 -1
View File
@@ -69,7 +69,7 @@ pipeline {
sh 'grcov . -s . --binary-path ./target/debug -t html --branch --ignore-not-existing -o ./target/debug/coverage/'
sshagent(credentials: ['documentation-buildfix']) {
// 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/coverage-rs/latest/'
}
}
}