mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08:00
[docs] Add security boundaries reference in SECURITY.md (#17848)
## Summary 1. Add a Security Boundaries section to `SECURITY.md`. 2. Point readers to the Codex Agent approvals and security documentation for sandboxing, approvals, and network controls. ## Validation 1. Reviewed the `SECURITY.md` diff in a clean worktree. 2. No tests run. Docs only change.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
load("//:defs.bzl", "MACOS_WEBRTC_RUSTC_LINK_FLAGS", "codex_rust_crate")
|
||||
load("//:defs.bzl", "MACOS_WEBRTC_RUSTC_LINK_FLAGS", "codex_rust_crate", "workspace_root_test")
|
||||
|
||||
codex_rust_crate(
|
||||
name = "tui",
|
||||
@@ -20,8 +20,27 @@ codex_rust_crate(
|
||||
"src/**/snapshots/**",
|
||||
]) + ["//codex-rs/core:model_availability_nux_fixtures"],
|
||||
integration_compile_data_extra = ["src/test_backend.rs"],
|
||||
unit_test_args = [
|
||||
"--skip",
|
||||
"app::tests::update_memory_settings_updates_current_thread_memory_mode",
|
||||
],
|
||||
extra_binaries = [
|
||||
"//codex-rs/cli:codex",
|
||||
],
|
||||
rustc_flags_extra = MACOS_WEBRTC_RUSTC_LINK_FLAGS,
|
||||
)
|
||||
|
||||
workspace_root_test(
|
||||
name = "tui-update-memory-settings-flaky-test",
|
||||
env = {
|
||||
"INSTA_WORKSPACE_ROOT": ".",
|
||||
"INSTA_SNAPSHOT_PATH": "src",
|
||||
},
|
||||
test_bin = ":tui-unit-tests-bin",
|
||||
workspace_root_marker = "//codex-rs/utils/cargo-bin:repo_root.marker",
|
||||
args = [
|
||||
"--exact",
|
||||
"app::tests::update_memory_settings_updates_current_thread_memory_mode",
|
||||
],
|
||||
tags = ["flaky"],
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user