From 727d5474e87329902d000f7cf01a19fd4f0e9527 Mon Sep 17 00:00:00 2001 From: Andrei Vagin Date: Mon, 3 Apr 2023 17:58:12 -0700 Subject: [PATCH] buildkite: don't set RUNTIME_LOG_DIR for runtime tests hooks/pre-command sets the RUNTIME variable and then hooks/post-command saves all logs from /tmp/$RUNTIME. PiperOrigin-RevId: 521613090 --- .buildkite/pipeline.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.buildkite/pipeline.yaml b/.buildkite/pipeline.yaml index ff46dac64..e48c89608 100644 --- a/.buildkite/pipeline.yaml +++ b/.buildkite/pipeline.yaml @@ -430,7 +430,7 @@ steps: - <<: *common <<: *docker label: ":php: PHP runtime tests" - command: make RUNTIME_LOG_DIR=/tmp/$${BUILDKITE_JOB_ID} php8.1.1-runtime-tests + command: make php8.1.1-runtime-tests parallelism: 10 agents: <<: *platform_specific_agents @@ -439,7 +439,7 @@ steps: - <<: *common <<: *docker label: ":java: Java runtime tests" - command: make RUNTIME_LOG_DIR=/tmp/$${BUILDKITE_JOB_ID} java17-runtime-tests + command: make java17-runtime-tests parallelism: 40 agents: <<: *platform_specific_agents @@ -448,7 +448,7 @@ steps: - <<: *common <<: *docker label: ":golang: Go runtime tests" - command: make RUNTIME_LOG_DIR=/tmp/$${BUILDKITE_JOB_ID} go1.20-runtime-tests + command: make go1.20-runtime-tests parallelism: 10 agents: <<: *platform_specific_agents @@ -457,7 +457,7 @@ steps: - <<: *common <<: *docker label: ":node: NodeJS runtime tests" - command: make RUNTIME_LOG_DIR=/tmp/$${BUILDKITE_JOB_ID} nodejs16.13.2-runtime-tests + command: make nodejs16.13.2-runtime-tests parallelism: 10 agents: <<: *platform_specific_agents @@ -466,7 +466,7 @@ steps: - <<: *common <<: *docker label: ":python: Python runtime tests" - command: make RUNTIME_LOG_DIR=/tmp/$${BUILDKITE_JOB_ID} python3.10.2-runtime-tests + command: make python3.10.2-runtime-tests parallelism: 10 agents: <<: *platform_specific_agents