diff --git a/.travis.yml b/.travis.yml index fcf35af9a3..86c1f45848 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,8 +19,8 @@ env: # Grab the BAZEL_SHA256SUM from the Bazel releases page; e.g.: # bazel-0.20.0-linux-x86_64.sha256 global: - - BAZEL=2.1.0 - - BAZEL_SHA256SUM=e13581d44faad6ac807dd917e682fef20359d26728166ac35dadd8ee653a580d + - BAZEL=3.0.0 + - BAZEL_SHA256SUM=3efb903ef885339a271445a9940642df704f97297fbe268f131d4fe36b02ea80 matrix: - TF_VERSION_ID=tf-nightly - TF_VERSION_ID= # Do not install TensorFlow in this case diff --git a/WORKSPACE b/WORKSPACE index a1e31ab0b1..878f2d0466 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -89,7 +89,7 @@ tf_workspace() load("@bazel_skylib//lib:versions.bzl", "versions") # Keep this version in sync with the BAZEL environment variable defined # in our .travis.yml config. -versions.check(minimum_bazel_version = "2.1.0") +versions.check(minimum_bazel_version = "3.0.0") load("@io_bazel_rules_sass//:package.bzl", "rules_sass_dependencies") @@ -109,12 +109,12 @@ bazel_version_repository(name = "bazel_version") http_archive( name = "io_bazel_rules_rust", - sha256 = "9beda941ab076d15428d8615475329bd65002a13a26c2837932af0fb3dc582c5", - strip_prefix = "rules_rust-9426a3820093e75ea07d14f875e42f789632507f", + sha256 = "17dbf791f4dab0fd4496ce5345af35e9ce2f6d011c1c8423436da517d019a3ea", + strip_prefix = "rules_rust-2f97db595b05b1ee8cc44bde5bdf03c00bd169fb", urls = [ - # Master branch as of 2020-10-23 - "http://mirror.tensorflow.org/github.com/bazelbuild/rules_rust/archive/9426a3820093e75ea07d14f875e42f789632507f.tar.gz", - "https://github.com/bazelbuild/rules_rust/archive/9426a3820093e75ea07d14f875e42f789632507f.tar.gz", + # Master branch as of 2020-11-05 + "http://mirror.tensorflow.org/github.com/bazelbuild/rules_rust/archive/2f97db595b05b1ee8cc44bde5bdf03c00bd169fb.tar.gz", + "https://github.com/bazelbuild/rules_rust/archive/2f97db595b05b1ee8cc44bde5bdf03c00bd169fb.tar.gz", ], )