From add61a69ec4e4a2d493431146c3acf349196707e Mon Sep 17 00:00:00 2001 From: David Kyle Date: Tue, 21 Nov 2023 11:33:04 +0000 Subject: [PATCH] Update CI machine types to N2 (#634) Use `n2-standard-2` for lint and doc builds Use `n2-standard-4` for tests --- .buildkite/pipeline.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index cfc0c52..6654073 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -4,6 +4,7 @@ steps: PYTHON_VERSION: 3 agents: provider: "gcp" + machineType: "n2-standard-2" commands: - ./.buildkite/lint-code.sh - label: ":books: Build documentation" @@ -11,11 +12,13 @@ steps: PYTHON_VERSION: 3.9-bookworm agents: provider: "gcp" + machineType: "n2-standard-2" commands: - ./.buildkite/build-documentation.sh - label: "Eland :python: {{ matrix.python }} :elasticsearch: {{ matrix.stack }}" agents: provider: "gcp" + machineType: "n2-standard-4" env: PYTHON_VERSION: "{{ matrix.python }}" PANDAS_VERSION: '1.5.0'