mirror of
https://github.com/openai/codex.git
synced 2026-04-24 06:35:50 +00:00
24 lines
1.0 KiB
Plaintext
24 lines
1.0 KiB
Plaintext
common --remote_download_minimal
|
|
common --nobuild_runfile_links
|
|
|
|
# These config settings are used to route linux RBE actions, but the linux bazelrc is included conditionally.
|
|
# This ensures that the configs are defined on non-linux as well.
|
|
common:aarch64 --keep_going
|
|
common:x86_64 --keep_going
|
|
|
|
# We prefer to run the build actions entirely remotely so we can dial up the concurrency.
|
|
# We have platform-specific tests, so we want to execute the tests on all platforms using the strongest sandboxing available on each platform.
|
|
|
|
# On linux, we can do a full remote build/test, by targeting the right (x86/arm) runners, so we have coverage of both.
|
|
# Linux crossbuilds don't work until we untangle the libc constraint mess.
|
|
common:linux --config=remote-base
|
|
common:linux --strategy=remote
|
|
|
|
# On mac, we can run all the build actions remotely but test actions locally.
|
|
common:macos --config=remote
|
|
common:macos --strategy=remote
|
|
common:macos --strategy=TestRunner=darwin-sandbox,local
|
|
|
|
common:windows --strategy=TestRunner=local
|
|
|