Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions .codex/environments/environment.toml

This file was deleted.

22 changes: 0 additions & 22 deletions .engineering-agent/project.yml

This file was deleted.

10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,13 @@
.env
.env.*
!.env.example

/.codex/
/.engineering-agent/
/.cursor/
/.claude/
/.agents/
/AGENTS.md
/SOUL.md
/USER.md
/MEMORY.md
4 changes: 4 additions & 0 deletions .mailmap
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Rafal Sikora <24563931+s1korrrr@users.noreply.github.com> Rafal <mrsikorarafal@gmail.com>
Rafal Sikora <24563931+s1korrrr@users.noreply.github.com> Rafał Sikora <mrsikorarafal@gmail.com>
Rafal Sikora <24563931+s1korrrr@users.noreply.github.com> s1korrrr <mrsikorarafal@gmail.com>
Rafal Sikora <24563931+s1korrrr@users.noreply.github.com> Rafal Sikora <mrsikorarafal@gmail.com>
3 changes: 2 additions & 1 deletion Tests/PackagingTests/promotion_contract.sh
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,8 @@ def require_rejected(name: str, mutate) -> None:
case_output = base / "promotion"
command = promotion_command(case_repo, case_candidate, case_external, case_output)
mutate(case_repo, case_candidate, case_external, case_output, command)
rejected = subprocess.run(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, timeout=10)
# ponytail: ceiling=must exceed verify_ed25519.swift cold-start (inner timeout=30); raise if Swift helper stays cold-path slow
rejected = subprocess.run(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, timeout=60)
if rejected.returncode == 0:
raise SystemExit(f"promotion unexpectedly accepted {name}")
if "release evidence rejected:" not in rejected.stderr and "usage:" not in rejected.stderr:
Expand Down