Skip to content

Commit

Permalink
Add support for ubuntu1804_java11 platform
Browse files Browse the repository at this point in the history
  • Loading branch information
philwo committed Jan 14, 2019
1 parent a28ddf2 commit 9f9c189
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion buildkite/bazelci.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,14 @@
"java": "10",
"docker-image": "gcr.io/bazel-untrusted/ubuntu1804:java10",
},
"ubuntu1804_java11": {
"name": "Ubuntu 18.04, JDK 11",
"emoji-name": ":ubuntu: 18.04 (JDK 11)",
"agent-directory": "/var/lib/buildkite-agent/builds/${BUILDKITE_AGENT_NAME}",
"publish_binary": False,
"java": "11",
"docker-image": "gcr.io/bazel-untrusted/ubuntu1804:java11",
},
"macos": {
"name": "macOS, JDK 8",
"emoji-name": ":darwin: (JDK 8)",
Expand Down Expand Up @@ -765,6 +773,7 @@ def remote_caching_flags(platform):
"ubuntu1804_nojava",
"ubuntu1804_java9",
"ubuntu1804_java10",
"ubuntu1804_java11",
"macos",
# "windows",
]:
Expand Down Expand Up @@ -1081,7 +1090,7 @@ def create_step(label, commands, platform=DEFAULT_PLATFORM):
"agents": {
"kind": "worker",
"java": PLATFORMS[platform]["java"],
"os": rchop(host_platform, "_nojava", "_java8", "_java9", "_java10"),
"os": rchop(host_platform, "_nojava", "_java8", "_java9", "_java10", "_java11"),
},
}

Expand Down

0 comments on commit 9f9c189

Please sign in to comment.