forked from pantsbuild/pants
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
24 lines (19 loc) · 803 Bytes
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright 2019 Pants project contributors (see CONTRIBUTORS.md).
# Licensed under the Apache License, Version 2.0 (see LICENSE).
shell_sources(name="scripts", sources=["cargo", "pants"])
# We use `BUILD_ROOT` to establish the build root, rather than `./pants`, per
# https://github.com/pantsbuild/pants/pull/8105.
files(name="files", sources=["BUILD_ROOT", "pants.toml"])
python_test_utils(name="test_utils")
# Used for experimenting with the new Docker support.
docker_environment(
name="docker_env",
image="python:3.9",
python_bootstrap_search_path=["<PATH>"],
)
# See `build-support/reapi-sample-server/README.md` for information on how to use this environment
# for internal testing.
remote_environment(
name="buildgrid_remote",
python_bootstrap_search_path=["<PATH>"],
)