aboutsummaryrefslogtreecommitdiffhomepage
path: root/WORKSPACE
diff options
context:
space:
mode:
authorGravatar Damien Martin-Guillerez <dmarting@google.com>2016-04-13 19:27:56 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-04-14 07:38:04 +0000
commit04d46abcf4d0a0a4054372a3da9b8e76c573aee5 (patch)
tree5af4b5ba793673ffa72e0f44414a7a8855371f8a /WORKSPACE
parentfcb17112bfbb598954306ee197a842ec8f4e8e64 (diff)
*** Reason for rollback *** Breaks ci.bazel.io While the basics for fixing the build is easy (just a few typos in packages building), fixing the test is a bit more tricky. I see only one solution for fixing the test: use a select statement that would select the good bazel version but that would always pull JavaBuilder as an external dependency when we do test. Better roll this back then check the JavaBuilder 0.1.0 as a binary in third_party before rolling forward (a similar change is still needed to decouple running the test and building the binary for JDK 7) *** Original change description *** Refactor build for JDK 7 Now the JDK 7 tuning happens all in Bazel, removing logic from the CI script. It uses remote repositories to access JDK 7 dependencies. -- MOS_MIGRATED_REVID=119773123
Diffstat (limited to 'WORKSPACE')
-rw-r--r--WORKSPACE16
1 files changed, 0 insertions, 16 deletions
diff --git a/WORKSPACE b/WORKSPACE
index ed50f775fe..05c5117286 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -23,22 +23,6 @@ bind(
actual = "//:dummy",
)
-# For building for JDK 7
-# This is a JDK 7 JavaBuilder from release 0.1.0.
-# Do not use the skylark bootstrapped version of JavaBuilder
-http_file(
- name = "io_bazel_javabuilder_jdk7",
- # This was built from Bazel 0.1.0 (after ./compile.sh) and JDK 7.
- url = "https://storage.googleapis.com/bazel/0.1.0/JavaBuilder_deploy.jar",
- sha256 = "374f07be2f73ec170ef6bdd8057530e6842cb0cbc7a240caccbd7b80be239366",
-)
-
-http_file(
- name = "io_bazel_javac_jdk7",
- url = "https://github.com/bazelbuild/bazel/blob/0.1.0/third_party/java/jdk/langtools/javac.jar?raw=true",
- sha256 = "e063cf60cf9a1d24acd043f55dc605da559b913793c6a4e51c5ddbc4f5d494df",
-)
-
# For tools/cpp/test/...
load("//tools/cpp/test:docker_repository.bzl", "docker_repository")
docker_repository()