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
18 changes: 15 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -334,15 +334,15 @@ jobs:
xcodebuild -project GhosttyTabs.xcodeproj \
-target programa-cli \
-configuration Debug \
CONFIGURATION_BUILD_DIR="$CLI_REGRESSION_DIR" \
SYMROOT="$CLI_REGRESSION_DIR" \
CODE_SIGNING_ALLOWED=NO \
build

- name: Run typed CLI registry behavior regression
run: |
set -euo pipefail

CLI_BIN="$RUNNER_TEMP/programa-cli-regression/programa"
CLI_BIN="$RUNNER_TEMP/programa-cli-regression/Debug/programa"
if [ -z "${CLI_BIN:-}" ] || [ ! -x "$CLI_BIN" ]; then
echo "programa CLI binary not found in DerivedData" >&2
exit 1
Expand All @@ -354,14 +354,26 @@ jobs:
run: |
set -euo pipefail

CLI_BIN="$RUNNER_TEMP/programa-cli-regression/programa"
CLI_BIN="$RUNNER_TEMP/programa-cli-regression/Debug/programa"
if [ -z "${CLI_BIN:-}" ] || [ ! -x "$CLI_BIN" ]; then
echo "programa CLI binary not found in DerivedData" >&2
exit 1
fi

PROGRAMA_CLI_BIN="$CLI_BIN" python3 tests/test_cli_argument_grammar.py

- name: Run Codex hook trust regression
run: |
set -euo pipefail

CLI_BIN="$RUNNER_TEMP/programa-cli-regression/Debug/programa"
if [ -z "${CLI_BIN:-}" ] || [ ! -x "$CLI_BIN" ]; then
echo "programa CLI binary not found in DerivedData" >&2
exit 1
fi

PROGRAMA_CLI_BIN="$CLI_BIN" python3 tests/test_cli_codex_hook_trust.py

- name: Run unit tests
env:
PROGRAMA_UNIT_TEST_SCOPE: split-stateful
Expand Down
Loading
Loading