File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 22name = " codspeed-runner"
33version = " 4.8.2"
44edition = " 2024"
5- repository = " https://github.com/CodSpeedHQ/runner "
5+ repository = " https://github.com/CodSpeedHQ/codspeed "
66publish = false
77
88[[bin ]]
Original file line number Diff line number Diff line change 33
44CLI to gather performance data and upload performance reports to [ CodSpeed] ( https://codspeed.io )
55
6- [ ![ CI] ( https://github.com/CodSpeedHQ/runner /actions/workflows/ci.yml/badge.svg )] ( https://github.com/CodSpeedHQ/runner /actions/workflows/ci.yml )
6+ [ ![ CI] ( https://github.com/CodSpeedHQ/codspeed /actions/workflows/ci.yml/badge.svg )] ( https://github.com/CodSpeedHQ/codspeed /actions/workflows/ci.yml )
77[ ![ Discord] ( https://img.shields.io/badge/chat%20on-discord-7289da.svg )] ( https://discord.com/invite/MxpaCfKSqF )
88[ ![ CodSpeed Badge] ( https://img.shields.io/endpoint?url=https://codspeed.io/badge.json )] ( https://codspeed.io/ )
99
@@ -21,16 +21,16 @@ The following CI providers are supported:
2121
2222If you want to use the CLI with another provider, you can open an issue or chat with us on [ Discord] ( https://discord.com/invite/MxpaCfKSqF ) 🚀
2323
24- You can check out the implementation of the [ supported providers] ( https://github.com/CodSpeedHQ/runner /tree/main/src/run/run_environment ) for reference.
24+ You can check out the implementation of the [ supported providers] ( https://github.com/CodSpeedHQ/codspeed /tree/main/src/run/run_environment ) for reference.
2525
2626## Installation
2727
2828``` bash
29- curl -fsSL https://github.com/CodSpeedHQ/runner /releases/latest/download/codspeed-runner-installer.sh | bash
29+ curl -fsSL https://github.com/CodSpeedHQ/codspeed /releases/latest/download/codspeed-runner-installer.sh | bash
3030source " $HOME /.cargo/env"
3131```
3232
33- Refer to the [ releases page] ( https://github.com/CodSpeedHQ/runner /releases ) to see all available versions.
33+ Refer to the [ releases page] ( https://github.com/CodSpeedHQ/codspeed /releases ) to see all available versions.
3434
3535## Usage
3636
Original file line number Diff line number Diff line change 22name = " exec-harness"
33version = " 1.0.0"
44edition = " 2024"
5- repository = " https://github.com/CodSpeedHQ/runner "
5+ repository = " https://github.com/CodSpeedHQ/codspeed "
66publish = false
77
88[[bin ]]
Original file line number Diff line number Diff line change 22name = " memtrack"
33version = " 1.2.0"
44edition = " 2024"
5- repository = " https://github.com/CodSpeedHQ/runner "
5+ repository = " https://github.com/CodSpeedHQ/codspeed "
66publish = false
77
88[lib ]
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ pub async fn execute_with_harness(
104104
105105 let get_exec_harness_installer_url = || {
106106 format ! (
107- "https://github.com/CodSpeedHQ/runner /releases/download/exec-harness-v{EXEC_HARNESS_VERSION}/exec-harness-installer.sh"
107+ "https://github.com/CodSpeedHQ/codspeed /releases/download/exec-harness-v{EXEC_HARNESS_VERSION}/exec-harness-installer.sh"
108108 )
109109 } ;
110110
Original file line number Diff line number Diff line change @@ -271,16 +271,16 @@ mod tests {
271271 #[ test]
272272 fn test_repository_override_from_arg ( ) {
273273 let override_result =
274- RepositoryOverride :: from_arg ( "CodSpeedHQ/runner " . to_string ( ) , None ) . unwrap ( ) ;
274+ RepositoryOverride :: from_arg ( "CodSpeedHQ/codspeed " . to_string ( ) , None ) . unwrap ( ) ;
275275 assert_eq ! ( override_result. owner, "CodSpeedHQ" ) ;
276- assert_eq ! ( override_result. repository, "runner " ) ;
276+ assert_eq ! ( override_result. repository, "codspeed " ) ;
277277 assert_eq ! (
278278 override_result. repository_provider,
279279 RepositoryProvider :: GitHub
280280 ) ;
281281
282282 let override_with_provider = RepositoryOverride :: from_arg (
283- "CodSpeedHQ/runner " . to_string ( ) ,
283+ "CodSpeedHQ/codspeed " . to_string ( ) ,
284284 Some ( RepositoryProvider :: GitLab ) ,
285285 )
286286 . unwrap ( ) ;
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ impl Executor for MemoryExecutor {
7070 ) -> Result < ( ) > {
7171 let get_memtrack_installer_url = || {
7272 format ! (
73- "https://github.com/CodSpeedHQ/runner /releases/download/memtrack-v{MEMTRACK_CODSPEED_VERSION}/memtrack-installer.sh"
73+ "https://github.com/CodSpeedHQ/codspeed /releases/download/memtrack-v{MEMTRACK_CODSPEED_VERSION}/memtrack-installer.sh"
7474 )
7575 } ;
7676
Original file line number Diff line number Diff line change @@ -37,33 +37,33 @@ mod tests {
3737
3838 #[ test]
3939 fn test_parse_git_remote ( ) {
40- let remote = "git@github.com:CodSpeedHQ/runner .git" ;
40+ let remote = "git@github.com:CodSpeedHQ/codspeed .git" ;
4141 let git_remote = parse_git_remote ( remote) . unwrap ( ) ;
4242 insta:: assert_debug_snapshot!( git_remote, @r###"
4343 GitRemote {
4444 domain: "github.com",
4545 owner: "CodSpeedHQ",
46- repository: "runner ",
46+ repository: "codspeed ",
4747 }
4848 "### ) ;
4949
50- let remote = "https://github.com/CodSpeedHQ/runner .git" ;
50+ let remote = "https://github.com/CodSpeedHQ/codspeed .git" ;
5151 let git_remote = parse_git_remote ( remote) . unwrap ( ) ;
5252 insta:: assert_debug_snapshot!( git_remote, @r###"
5353 GitRemote {
5454 domain: "github.com",
5555 owner: "CodSpeedHQ",
56- repository: "runner ",
56+ repository: "codspeed ",
5757 }
5858 "### ) ;
5959
60- let remote = "https://github.com/CodSpeedHQ/runner " ;
60+ let remote = "https://github.com/CodSpeedHQ/codspeed " ;
6161 let git_remote = parse_git_remote ( remote) . unwrap ( ) ;
6262 insta:: assert_debug_snapshot!( git_remote, @r###"
6363 GitRemote {
6464 domain: "github.com",
6565 owner: "CodSpeedHQ",
66- repository: "runner ",
66+ repository: "codspeed ",
6767 }
6868 "### ) ;
6969
Original file line number Diff line number Diff line change @@ -279,16 +279,16 @@ mod tests {
279279 fn test_extract_provider_owner_and_repository_from_remote_url ( ) {
280280 let remote_urls = [
281281 (
282- "git@github.com:CodSpeedHQ/runner .git" ,
282+ "git@github.com:CodSpeedHQ/codspeed .git" ,
283283 RepositoryProvider :: GitHub ,
284284 "CodSpeedHQ" ,
285- "runner " ,
285+ "codspeed " ,
286286 ) ,
287287 (
288- "https://github.com/CodSpeedHQ/runner .git" ,
288+ "https://github.com/CodSpeedHQ/codspeed .git" ,
289289 RepositoryProvider :: GitHub ,
290290 "CodSpeedHQ" ,
291- "runner " ,
291+ "codspeed " ,
292292 ) ,
293293 (
294294 "git@gitlab.com:codspeed/runner.git" ,
You can’t perform that action at this time.
0 commit comments