From 07641ddd666a89c04333353242fc9fba6c0ce041 Mon Sep 17 00:00:00 2001 From: Daniel Moody Date: Wed, 10 Dec 2025 14:04:36 -0600 Subject: [PATCH] SERVER-115228 fix check workstation script hang (#45061) GitOrigin-RevId: b6920e6b321c26ddd2e8f34d6b9b6eec5fdb9540 --- .github/CODEOWNERS | 1 + etc/OWNERS.yml | 3 +++ etc/set_up_workstation.sh | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 23b1ba5f384..bef54fe1788 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -385,6 +385,7 @@ WORKSPACE.bazel @10gen/devprod-build @svc-auto-approve-bot /etc/system_perf.yml @10gen/performance @svc-auto-approve-bot /etc/evergreen_yml_components/tasks/release_tasks.yml @10gen/devprod-release-infrastructure @svc-auto-approve-bot /etc/evergreen_yml_components/variants/release/release.yml @10gen/devprod-release-infrastructure @svc-auto-approve-bot +/etc/set_up_workstation.sh @10gen/devprod-build @svc-auto-approve-bot # The following patterns are parsed from ./etc/evergreen_yml_components/tasks/resmoke/non_server_teams/OWNERS.yml /etc/evergreen_yml_components/tasks/resmoke/non_server_teams/ @10gen/devprod-correctness @svc-auto-approve-bot diff --git a/etc/OWNERS.yml b/etc/OWNERS.yml index 3e2b1ca2f41..6efc84b81a0 100644 --- a/etc/OWNERS.yml +++ b/etc/OWNERS.yml @@ -33,3 +33,6 @@ filters: - "/evergreen_yml_components/variants/release/release.yml": approvers: - 10gen/devprod-release-infrastructure + - "set_up_workstation.sh": + approvers: + - 10gen/devprod-build diff --git a/etc/set_up_workstation.sh b/etc/set_up_workstation.sh index 9f9e7a1c800..7ac1f473a55 100755 --- a/etc/set_up_workstation.sh +++ b/etc/set_up_workstation.sh @@ -127,7 +127,7 @@ setup_clang_config() { echo "################################################################################" echo "Installing clang config..." - bazel build compiledb + MONGO_WRAPPER_OUTPUT_ALL=1 bazel build compiledb echo "Finished installing clang config..." }