From 9c12157c0bf29a281e17f0434c6dd16ebe6cb6ce Mon Sep 17 00:00:00 2001 From: Ellie <4158750+esenmarti@users.noreply.github.com> Date: Thu, 13 Jun 2024 12:23:10 +0200 Subject: [PATCH] Update pipeline.yml --- .buildkite/pipeline.yml | 32 ++++++++++++++++++++------------ 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 477c43337..821a9b7ee 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -1,14 +1,22 @@ --- # $yaml-language-server: $schema=https://raw.githubusercontent.com/buildkite/pipeline-schema/main/schema.json -steps: - - label: "Build" - command: "true" - - - label: "Test" - command: "true" - - - label: "Deploy" - command: "true" - - - label: "Publish" - command: "true" + - label: ":elasticsearch: :php: ES PHP ({{ matrix.php }}) Test Suite: {{ matrix.suite }}" + agents: + provider: "gcp" + env: + PHP_VERSION: "{{ matrix.php }}" + TEST_SUITE: "{{ matrix.suite }}" + STACK_VERSION: 8.14.0-SNAPSHOT + matrix: + setup: + suite: + - "free" + - "platinum" + php: + - "8.3-cli" + - "8.2-cli" + - "8.1-cli" + - "8.0-cli" + - "7.4-cli" + command: ./.buildkite/run-tests + artifact_paths: "*.xml"