Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
621a3e2
feat: Add AI-driven code explanation command
Peaostrel Jul 25, 2026
23ce8af
Merge origin/master into feat/ai-code-explanation - resolve all confl…
Peaostrel Jul 27, 2026
9396320
fix: resolve merge conflicts
Peaostrel Jul 29, 2026
d78cc7b
fix: resolve remaining merge conflicts
Peaostrel Jul 29, 2026
bc16d54
style: fix formatting
Peaostrel Jul 29, 2026
c56e2df
fix: governance syntax error
Peaostrel Jul 29, 2026
77be864
fix: restore missing modules
Peaostrel Jul 29, 2026
f172abe
fix: ai_chat imports and formatting
Peaostrel Jul 29, 2026
0f887a3
fix: add translation_prompt
Peaostrel Jul 29, 2026
73e0582
Merge remote-tracking branch 'origin/master' into pr-581
Peaostrel Jul 29, 2026
a238f05
Fix syntax errors and duplicate blocks, allow CDLA-Permissive-2.0 lic…
Peaostrel Jul 29, 2026
5db6859
Merge origin/master and resolve conflicts
Peaostrel Jul 29, 2026
979997e
Fix multiple rust compilation errors from PR CI log
Peaostrel Jul 29, 2026
ab179f0
Fix cargo fmt issues
Peaostrel Jul 29, 2026
733d59a
Fix duplicate modules, struct fields, borrow issues, and imports
Peaostrel Jul 29, 2026
f36634c
Fix CI compilation errors
Peaostrel Jul 29, 2026
6374ccf
fix: Resolve all remaining compilation errors
Peaostrel Jul 29, 2026
3cc7efe
fix: Resolve the final batch of rust compilation errors
Peaostrel Jul 29, 2026
f596681
fix: Resolve the very last compile and borrow checker errors
Peaostrel Jul 29, 2026
6425222
fix: resolve remaining as_str in compliance.rs
Peaostrel Jul 29, 2026
ffe3638
fix: resolve final clippy and rustfmt errors from CI
Peaostrel Jul 29, 2026
8b606d1
fix: resolve remaining compilation errors in ai_test and profiler
Peaostrel Jul 29, 2026
8f87dba
fix: resolve main.rs compilation errors and profiler formatting
Peaostrel Jul 29, 2026
0d68057
fix: add missing command patterns to main.rs
Peaostrel Jul 29, 2026
c124b35
fix: downgrade ed25519-dalek to resolve rand_core trait mismatch and …
Peaostrel Jul 29, 2026
186d4b8
fix: resolve compilation errors, restore lock_home_env, add futures d…
Peaostrel Jul 29, 2026
abc6a20
Merge origin/master into feat/ai-code-explanation
Peaostrel Jul 29, 2026
88e933c
fix: resolve syntax errors in deploy.rs and multisig_builder.rs, appl…
Peaostrel Jul 29, 2026
f40a1d9
fix: resolve duplicate generate_signature, missing dialoguer imports,…
Peaostrel Jul 29, 2026
69dafd1
Merge origin/master (resolve fresh conflicts)
Peaostrel Jul 29, 2026
540ac47
fix: resolve duplicate module exports, add wasm_preflight export and …
Peaostrel Jul 29, 2026
89b88cb
fix: make TestOptimizer history field public, fix Option types in dep…
Peaostrel Jul 29, 2026
6a51e10
fix: resolve clippy denying, test_optimizer history visibility, and d…
Peaostrel Jul 29, 2026
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y libudev-dev
- name: Build
run: cargo build --locked
- name: Test
run: cargo test --locked
- name: Build and Test
run: cargo test --locked -- --test-threads=1

clippy:
name: Clippy Lint
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/deploy-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,8 @@ jobs:
- name: Run deployment verification tests
# cargo accepts a single positional filter; libtest accepts several,
# so the filters must go after `--`.
run: cargo test --locked -- deployment_verify network_sim bridge --nocapture
run: |
cargo test --locked --test deployment_verification -- --nocapture
cargo test --locked --test network_simulation -- --nocapture
cargo test --locked --test bridge_integration -- --nocapture
cargo test --locked -- deployment_verify network_sim bridge --nocapture
Loading
Loading