mirror of
https://github.com/google/nomulus.git
synced 2025-07-22 18:55:58 +02:00
Update to bazel 0.23.1
Also updated closure rules to GitHub master, as the current release version (0.80.0) has compatibility issues with bazel 0.23.1. See: https://github.com/bazelbuild/rules_closure/issues/333 Note that on Debian Testing (Buster) there's currently an issue with OpenSSL that can be temporarily fixed by setting the environment variable OPENSSL_CONF to /etc/ssl. See: https://fransdejonge.com/2018/12/run-enpass-on-debian-buster-testing/ Lastly, migrated from the --local_resources flag (to be deprecated) to --local_ram_resources and --local_cpu_resources. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=237527805
This commit is contained in:
parent
e8c57a4f46
commit
11e3f458a8
2 changed files with 8 additions and 8 deletions
|
@ -7,8 +7,8 @@ This document covers the steps necessary to download, build, and deploy Nomulus.
|
|||
You will need the following programs installed on your local machine:
|
||||
|
||||
* A recent version of the [Java 8 JDK][java-jdk8].
|
||||
* [Bazel build system](http://bazel.io/) (version [0.21.0][bazel-version]
|
||||
works as of 2018-12-20).
|
||||
* [Bazel build system](http://bazel.io/) (version [0.23.1][bazel-version]
|
||||
works as of 2019-03-08).
|
||||
* [Google App Engine SDK for Java][app-engine-sdk], and configure aliases to
|
||||
to the `gcloud` and `appcfg.sh` utilities (you'll use them a lot).
|
||||
* [Git](https://git-scm.com/) version control system.
|
||||
|
@ -85,7 +85,7 @@ build:
|
|||
```shell
|
||||
$ nice bazel --batch test --javacopt="-target 8 -source 8" \
|
||||
//javatests/google/registry/... \
|
||||
--local_resources=1000,3,1.0
|
||||
--local_ram_resources=1000 --local_cpu_resources=3
|
||||
Executed 360 out of 360 tests: 360 tests pass.
|
||||
```
|
||||
|
||||
|
@ -181,4 +181,4 @@ See the [first steps tutorial](./first-steps-tutorial.md) for more information.
|
|||
|
||||
[app-engine-sdk]: https://cloud.google.com/appengine/docs/java/download
|
||||
[java-jdk8]: http://www.oracle.com/technetwork/java/javase/downloads
|
||||
[bazel-version]: https://github.com/bazelbuild/bazel/releases/download/0.21.0/bazel-0.21.0-installer-linux-x86_64.sh
|
||||
[bazel-version]: https://github.com/bazelbuild/bazel/releases/download/0.23.1/bazel-0.23.1-installer-linux-x86_64.sh
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue