From 882fd59cac3e133ecc2b3d3b96b7e27241f962a1 Mon Sep 17 00:00:00 2001 From: Sean Parker Date: Tue, 7 Jul 2020 12:03:08 +0100 Subject: [PATCH] Update buildkite artifact path to only use forward slash (#109) * Replace \\ in artifact path with forward slash * Update buildkite windows builder queue * Add agent flag to use platform normalised paths * Update CHANGELOG.md --- .buildkite/premerge.steps.yaml | 3 ++- .buildkite/release-qa.steps.yaml | 3 ++- ci/launch.sh | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.buildkite/premerge.steps.yaml b/.buildkite/premerge.steps.yaml index 5a0c5bfab..87b3ba374 100644 --- a/.buildkite/premerge.steps.yaml +++ b/.buildkite/premerge.steps.yaml @@ -13,11 +13,12 @@ windows: &windows - "environment=production" - "permission_set=builder" - "platform=windows" - - "queue=${WINDOWS_BUILDER_QUEUE:-v4-20-03-27-114536-bk10005-d340403f-d}" + - "queue=${WINDOWS_BUILDER_QUEUE:-v4-20-07-06-124455-bk13081-5d808a4a}" - "scaler_version=2" - "minimum_instances=1" - "agent_count=1" - "machine_type=quad" + - "experiment_normalised_upload_paths=true" timeout_in_minutes: 60 # TODO(ENG-548): reduce timeout once agent-cold-start is optimised. retry: automatic: diff --git a/.buildkite/release-qa.steps.yaml b/.buildkite/release-qa.steps.yaml index 00d704527..5f79f7fb3 100644 --- a/.buildkite/release-qa.steps.yaml +++ b/.buildkite/release-qa.steps.yaml @@ -13,11 +13,12 @@ windows: &windows - "environment=production" - "permission_set=builder" - "platform=windows" - - "queue=${WINDOWS_BUILDER_QUEUE:-v4-20-03-27-114536-bk10005-d340403f-d}" + - "queue=${WINDOWS_BUILDER_QUEUE:-v4-20-07-06-124455-bk13081-5d808a4a}" - "scaler_version=2" - "minimum_instances=1" - "agent_count=1" - "machine_type=quad" + - "experiment_normalised_upload_paths=true" timeout_in_minutes: 60 # TODO(ENG-548): reduce timeout once agent-cold-start is optimised. retry: automatic: diff --git a/ci/launch.sh b/ci/launch.sh index 710978744..a75c9b2b3 100755 --- a/ci/launch.sh +++ b/ci/launch.sh @@ -12,7 +12,7 @@ source ".shared-ci/scripts/pinned-tools.sh" # Download the artifacts and reconstruct the build/assemblies folder. traceStart "Downloading assembly :inbox_tray:" - buildkite-agent artifact download "build\assembly\**\*" . + buildkite-agent artifact download "build/assembly/**/*" . traceEnd uploadAssembly "${ASSEMBLY_PREFIX}" "${PROJECT_NAME}"