51 lines
2.1 KiB
Plaintext
51 lines
2.1 KiB
Plaintext
|
# Copyright 2016 The Bazel Authors. All rights reserved.
|
||
|
#
|
||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
# you may not use this file except in compliance with the License.
|
||
|
# You may obtain a copy of the License at
|
||
|
#
|
||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||
|
#
|
||
|
# Unless required by applicable law or agreed to in writing, software
|
||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
# See the License for the specific language governing permissions and
|
||
|
# limitations under the License.
|
||
|
|
||
|
# This .bazelrc file contains some of the flags required for the provided
|
||
|
# toolchain with Remote Build Execution. Specifically, it includes all flags
|
||
|
# except toolchain/platform flags.
|
||
|
|
||
|
# Depending on how many machines are in the remote execution instance, setting
|
||
|
# this higher can make builds faster by allowing more jobs to run in parallel.
|
||
|
# Setting it too high can result in jobs that timeout, however, while waiting
|
||
|
# for a remote machine to execute them.
|
||
|
build:remote --jobs=50
|
||
|
|
||
|
# Set various strategies so that all actions execute remotely. Mixing remote
|
||
|
# and local execution will lead to errors unless the toolchain and remote
|
||
|
# machine exactly match the host machine.
|
||
|
build:remote --spawn_strategy=remote
|
||
|
build:remote --strategy=Javac=remote
|
||
|
build:remote --strategy=Closure=remote
|
||
|
build:remote --strategy=Genrule=remote
|
||
|
build:remote --define=EXECUTOR=remote
|
||
|
|
||
|
# Enable the remote cache so action results can be shared across machines,
|
||
|
# developers, and workspaces.
|
||
|
build:remote --remote_cache=remotebuildexecution.googleapis.com
|
||
|
|
||
|
# Enable remote execution so actions are performed on the remote systems.
|
||
|
build:remote --remote_executor=remotebuildexecution.googleapis.com
|
||
|
|
||
|
# Enable encryption.
|
||
|
build:remote --tls_enabled=true
|
||
|
|
||
|
# Set a higher timeout value, just in case.
|
||
|
build:remote --remote_timeout=3600
|
||
|
|
||
|
# Enable authentication. This will pick up application default credentials by
|
||
|
# default. You can use --auth_credentials=some_file.json to use a service
|
||
|
# account credential instead.
|
||
|
build:remote --auth_enabled=true
|