Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
fa1b27b
fix(mobile): style inline code with the app mono face (#6631)
TolgaCinisli Sep 8, 2026
86c189e
fix(buzz-acp): wake held ACP threads and fence forked sessions (#7340)
salman1993 Sep 8, 2026
cd54e26
fix(agent): route GPT-5+ model-service FQNs to Responses (#7358)
baxen Sep 8, 2026
44316ff
feat(mesh): upgrade to mesh-llm 0.76.0-rc8 and recommend Qwen3.8 27B …
micspiral Sep 8, 2026
218633b
fix(link-preview): keep composer fetches user-paced (#7211)
tellaho Sep 8, 2026
c045321
fix(acp): pace targeted overflow recovery on consumer capacity (#7325)
loganj Sep 8, 2026
93761e4
fix(mobile): render push notification sender identity as npub (#7494)
loganj Sep 9, 2026
bfc3848
fix(desktop): shared npub identity foundation (canonicalNpub, PubKey …
loganj Sep 9, 2026
27c62be
[lenny] merge: integrate upstream block/main bfc3848558 into product/…
mfethe1 Sep 9, 2026
ee2988c
test(mobile): match SDK font filename case
mfethe1 Sep 7, 2026
ad2a841
fix(desktop): npub identity displays for mention, member, and workflo…
loganj Sep 9, 2026
2226b6f
fix(desktop): npub identity controls across profile, agents, and work…
loganj Sep 9, 2026
82656ff
fix(mobile): standardize public-key identity display on npub (#7493)
loganj Sep 9, 2026
908e07b
[lenny] merge: integrate upstream block/main 82656ffea0 into product/…
mfethe1 Sep 9, 2026
ac55660
test(mobile): align fork identity fixtures with upstream npub labels
mfethe1 Sep 9, 2026
ad9591c
fix(desktop): order unnamed roster members by full canonical npub (#7…
loganj Sep 9, 2026
12023a3
fix(desktop): require a Codex adapter with Astra support (#7427)
sbddesign Sep 9, 2026
051c3a2
fix(buzz-acp): report missing models without retrying (#7538)
ngthuydiem Sep 9, 2026
ae5f003
[lenny] merge: integrate upstream block/main 051c3a270b (3 commits: #…
mfethe1 Sep 10, 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
16 changes: 15 additions & 1 deletion .github/workflows/_ci-clients.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,10 @@ jobs:
key: ${{ runner.os }}-hermit-cache-${{ steps.hermit-bin-hash.outputs.hash }}
restore-keys: ${{ runner.os }}-hermit-cache-
- name: Prime Flutter SDK
run: flutter --version
run: |
flutter --version
flutter --version --machine > "$RUNNER_TEMP/mobile-flutter-version.json"
printf '%s\n' "$GITHUB_SHA" > "$RUNNER_TEMP/mobile-tested-sha.txt"
- name: Save Hermit package cache
if: always() && steps.hermit-cache.outputs.cache-hit != 'true'
uses: actions/cache/save@caa296126883cff596d87d8935842f9db880ef25 # v5
Expand Down Expand Up @@ -112,6 +115,17 @@ jobs:
run: cd mobile && flutter analyze
- name: Test
run: cd mobile && flutter test
- name: Upload mobile failure evidence
if: ${{ failure() }}
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: mobile-failures-${{ github.run_id }}-${{ github.run_attempt }}
path: |
mobile/test/**/failures/*.png
${{ runner.temp }}/mobile-flutter-version.json
${{ runner.temp }}/mobile-tested-sha.txt
if-no-files-found: error
retention-days: 7
- name: Build Android debug APK
run: just mobile-build-android

Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/_ci-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ jobs:
desktop-core:
name: Desktop Core
runs-on: ubuntu-latest
timeout-minutes: 45
# The compiled-flag verification step rebuilds the workspace for each
# BUZZ_BUILD_* state and runs the full suite under all three compile
# states; the complete recipe needs ~46m, so budget 60m.
timeout-minutes: 60
if: github.event_name == 'push' || inputs.desktop || inputs.desktop_rust || inputs.rust
permissions:
contents: read
Expand Down Expand Up @@ -92,6 +95,10 @@ jobs:
run: just desktop-tauri-test
env:
CMAKE_POLICY_VERSION_MINIMUM: "3.5"
- name: Desktop Mesh feature tests
run: cargo test --manifest-path desktop/src-tauri/Cargo.toml --features mesh-llm --lib
env:
CMAKE_POLICY_VERSION_MINIMUM: "3.5"
- name: Desktop Tauri compiled-flag verification
run: just desktop-tauri-test-compiled-flags
env:
Expand Down
Loading
Loading