summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAudun Sutterud <audun.sutterud@qt.io>2023-11-01 10:45:38 +0100
committerAudun Sutterud <audun.sutterud@qt.io>2024-02-27 09:17:33 +0100
commitd9f71beff2e958ba5f33e707fb2176aa94a325eb (patch)
tree17b321ffcd7e042601dea73d939d399c323b24b2
parent38e4cac8f55a67601757a29d3199e86281a88905 (diff)
corebenchrunner: Strip information from config.json
We should use the production instance of the Cherrypick-bot. We should not hardcode login credentials. These should always be selected. The various parameters in the Git URL should be configured through ~/.ssh/config, as specified in the README file. Change-Id: I8b4f37b3a8004c278ce063d416cef43ea006fbec Reviewed-by: Daniel Smith <daniel.smith@qt.io>
-rw-r--r--scripts/corebenchrunner/config.json8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/corebenchrunner/config.json b/scripts/corebenchrunner/config.json
index 12f6718a..f075ec06 100644
--- a/scripts/corebenchrunner/config.json
+++ b/scripts/corebenchrunner/config.json
@@ -1,15 +1,15 @@
{
"coordinator_info": {
- "url": "https://qt-cherry-pick-bot-staging.herokuapp.com",
- "secret": "1234"
+ "url": "https://qt-cherry-pick-bot.herokuapp.com/",
+ "secret": ""
},
"database_info": {
"server_url": "https://testresults.qt.io/influxdb",
- "database_name": "",
+ "database_name": "core_benchmarks",
"username": "",
"password": ""
},
"qtbase_git_remote": {
- "url": "ssh://QtCoreBenchmarksBot@codereview.qt-project.org:29418/qt/qtbase"
+ "url": "ssh://codereview.qt-project.org/qt/qtbase"
}
}