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
This commit is contained in:
Andrei Vagin
2023-04-03 18:02:03 -07:00
committed by gVisor bot
parent 0776a6d557
commit 727d5474e8
+5 -5
View File
@@ -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