Skip to content

Commit

Permalink
ci: clang-tidy for oauth2, storagecontrol (#14338)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbolduc authored Jun 14, 2024
1 parent a4b0650 commit 29b8a83
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion ci/lib/shard.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,11 @@ readonly PUBSUB_SHARD=(

readonly STORAGE_SHARD=(
storage
storagecontrol
experimental-storage_grpc
# universe_domain is included because its deps are already built by storage.
# oauth2 and universe_domain are included because their deps are already built
# by storage.
oauth2
universe_domain
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,11 @@ void AutoRun(std::vector<std::string> const& argv) {
auto client = storagecontrol::StorageControlClient(
storagecontrol::MakeStorageControlConnection());
auto generator = google::cloud::internal::DefaultPRNG(std::random_device{}());
auto const prefix = "storage-control-samples";
auto const folder_id = prefix + std::string{"-"} +
auto const prefix = std::string{"storage-control-samples"};
auto const folder_id = prefix + "-" +
google::cloud::internal::Sample(
generator, 32, "abcdefghijklmnopqrstuvwxyz");
auto const dest_folder_id = prefix + std::string{"-"} +
auto const dest_folder_id = prefix + "-" +
google::cloud::internal::Sample(
generator, 32, "abcdefghijklmnopqrstuvwxyz");
auto const create_time_limit =
Expand Down

0 comments on commit 29b8a83

Please sign in to comment.