From c433cd13a91692d6facbe0c591893df7a7c134fc Mon Sep 17 00:00:00 2001 From: Victor Allombert Date: Mon, 7 Jul 2025 15:53:35 +0200 Subject: [PATCH 1/2] Tezt/lib_cloud: improve machine-type doc --- tezt/lib_cloud/cli.ml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tezt/lib_cloud/cli.ml b/tezt/lib_cloud/cli.ml index 8c0b2dfa5999..142802445869 100644 --- a/tezt/lib_cloud/cli.ml +++ b/tezt/lib_cloud/cli.ml @@ -224,8 +224,11 @@ let machine_type = ~section ~long:"machine-type" ~description: - "Can specify a GCP machine type (see \ - https://cloud.google.com/compute/docs/general-purpose-machines#c3d_series)" + (Format.sprintf + "Can specify a GCP machine type (see \ + https://cloud.google.com/compute/docs/general-purpose-machines#n2_series). \ + Default is %s." + Types.Agent_configuration.default_gcp_machine_type) Types.Agent_configuration.default_gcp_machine_type let dockerfile_alias = -- GitLab From 32c9251bf24680892e11010669e871d7bb8a23da Mon Sep 17 00:00:00 2001 From: Victor Allombert Date: Mon, 7 Jul 2025 15:54:10 +0200 Subject: [PATCH 2/2] Tezt/Cloud/DAL: improve stake-machine-type documentation --- tezt/tests/cloud/scenarios_cli.ml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tezt/tests/cloud/scenarios_cli.ml b/tezt/tests/cloud/scenarios_cli.ml index 757a5f28913a..9b3a7bdf54a6 100644 --- a/tezt/tests/cloud/scenarios_cli.ml +++ b/tezt/tests/cloud/scenarios_cli.ml @@ -253,7 +253,8 @@ module Dal () : Dal = struct ~description: "Specify the machine type used by the stake. The nth machine type will \ be assigned to the nth stake specified with [--stake]. If less \ - machine types are specified, the default one will be used." + machine types are specified, the default one (or the one specified by \ + --machine-type) will be used." stake_machine_type_typ () -- GitLab