From 44b870c144668962490b1316a7f9b33c44ea1279 Mon Sep 17 00:00:00 2001 From: Mikhail Goncharov Date: Wed, 17 Jun 2020 10:20:34 +0200 Subject: [PATCH] Update agents name to be short long names causes some tests to fail due to windows limitation --- docs/playbooks.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/playbooks.md b/docs/playbooks.md index 9beedb3..94c0a25 100644 --- a/docs/playbooks.md +++ b/docs/playbooks.md @@ -126,10 +126,11 @@ To spawn a new windows agent: 1. Create `c:\credentials` folder with file `buildkite-env.ps1`: ```powershell $Env:buildkiteAgentToken = "secret-token" - $Env:BUILDKITE_AGENT_NAME = "buildkite-windows-#" + $Env:BUILDKITE_AGENT_NAME = "w#" $Env:BUILDKITE_AGENT_TAGS = "queue=windows" $Env:CONDUIT_TOKEN = "conduit-api-token" - ``` + ``` + Pleas mind the length of the agent name as it will be in path and might cause some tests to fail due to 260 character limit. 1. Run ```powershell git clone https://github.com/google/llvm-premerge-checks.git C:\llvm-premerge-checks