-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.bazelrc
23 lines (18 loc) · 912 Bytes
/
.bazelrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Bazel doesn't allow importing from other workspaces... so we just have to
# copy & paste .bazelrc from the Isaac SDK... nice system...
build --keep_going --color=yes -c opt --crosstool_top=@toolchain//crosstool:toolchain
build --define=target_platform=x86_64 --strip=always
build --action_env=target_platform="x86_64"
build:x86_64 --define=target_platform=x86_64 --strip=always
build:x86_64 --action_env=target_platform="x86_64"
build:jetpack42 --cpu=arm64-v8a --strip=always
build:jetpack42 --define=target_platform=jetpack42
build:jetpack42 --action_env=target_platform="jetpack42"
test --test_output=errors --keep_going --color=yes -c opt
test --test_tag_filters=-lint
build --python_top=//engine/build:python3
test --python_top=//engine/build:python3
run --python_top=//engine/build:python3
test:lint --build_tests_only
test:lint --test_tag_filters=lint
test:lint --python_top=//engine/build:python27