Skip to content

Commit

Permalink
Merge branch 'v3-maintenance' into port-ubuntu-24-compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
art049 committed Oct 14, 2024
2 parents 99a6193 + 95b11da commit 9696ebd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Refer to the [releases page](https://github.com/CodSpeedHQ/runner/releases) to s
## Usage

> [!NOTE]
> For now, the CLI only supports Ubuntu 20.04, 22.04, and Debian 11, 12.
> For now, the CLI only supports Ubuntu 20.04, 22.04, 24.04 and Debian 11, 12.
First, authenticate with your CodSpeed account:

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use log::log_enabled;

pub const VERSION: &str = env!("CARGO_PKG_VERSION");
pub const MONGODB_TRACER_VERSION: &str = "cs-mongo-tracer-v0.2.0";
pub const VALGRIND_CODSPEED_VERSION: &str = "3.21.0-0codspeed2";
pub const VALGRIND_CODSPEED_VERSION: &str = "3.21.0-0codspeed3";

#[tokio::main(flavor = "current_thread")]
async fn main() {
Expand Down
1 change: 1 addition & 0 deletions src/run/check_system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ lazy_static! {
HashSet::from([
("Ubuntu", "20.04", "x86_64"),
("Ubuntu", "22.04", "x86_64"),
("Ubuntu", "24.04", "x86_64"),
("Ubuntu", "22.04", "aarch64"),
("Debian", "11", "x86_64"),
("Debian", "12", "x86_64"),
Expand Down
1 change: 1 addition & 0 deletions src/run/runner/valgrind/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ fn get_codspeed_valgrind_filename(system_info: &SystemInfo) -> Result<String> {
("20.04", "amd64")
}
("Ubuntu", "22.04", "x86_64") => ("22.04", "amd64"),
("Ubuntu", "24.04", "x86_64") => ("24.04", "amd64"),
("Ubuntu", "22.04", "aarch64") => ("22.04", "arm64"),
_ => bail!("Unsupported system"),
};
Expand Down

0 comments on commit 9696ebd

Please sign in to comment.