summaryrefslogtreecommitdiffhomepage
path: root/.buildkite
diff options
context:
space:
mode:
authorAdin Scannell <ascannell@google.com>2020-12-29 23:26:29 -0800
committergVisor bot <gvisor-bot@google.com>2020-12-29 23:28:39 -0800
commited5850e8eb98c33d90f7233c0fb196d74e347439 (patch)
tree9d1e55a5fc8943a7401a0712905fc7a33482cade /.buildkite
parentfc153750ed8b59e9fede94d17102346992396ecb (diff)
Add continuous VFS1 tests.
PiperOrigin-RevId: 349517093
Diffstat (limited to '.buildkite')
-rw-r--r--.buildkite/pipeline.yaml27
1 files changed, 27 insertions, 0 deletions
diff --git a/.buildkite/pipeline.yaml b/.buildkite/pipeline.yaml
index 79a80d9c8..b1d59e091 100644
--- a/.buildkite/pipeline.yaml
+++ b/.buildkite/pipeline.yaml
@@ -105,3 +105,30 @@ steps:
label: ":python: Python runtime tests"
command: make python3.7.3-runtime-tests_vfs2
parallelism: 10
+
+ # Runtime tests (VFS1).
+ - <<: *common
+ label: ":php: PHP runtime tests (VFS1)"
+ command: make php7.3.6-runtime-tests
+ parallelism: 10
+ if: build.message =~ /VFS1/ || build.branch == "master"
+ - <<: *common
+ label: ":java: Java runtime tests (VFS1)"
+ command: make java11-runtime-tests
+ parallelism: 40
+ if: build.message =~ /VFS1/ || build.branch == "master"
+ - <<: *common
+ label: ":golang: Go runtime tests (VFS1)"
+ command: make go1.12-runtime-tests
+ parallelism: 10
+ if: build.message =~ /VFS1/ || build.branch == "master"
+ - <<: *common
+ label: ":node: NodeJS runtime tests (VFS1)"
+ command: make nodejs12.4.0-runtime-tests
+ parallelism: 10
+ if: build.message =~ /VFS1/ || build.branch == "master"
+ - <<: *common
+ label: ":python: Python runtime tests (VFS1)"
+ command: make python3.7.3-runtime-tests
+ parallelism: 10
+ if: build.message =~ /VFS1/ || build.branch == "master"