Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
ad0cfd4
Update HC to 0.6.0-rc.0 from our repo
lucksus Nov 10, 2025
981e4ec
Update some other deps to fix version selection (including Tauri 2)
lucksus Nov 10, 2025
4a3a5b2
Changed Holochain API
lucksus Nov 10, 2025
5f174fc
Update scryer to 0.10
lucksus Nov 11, 2025
1468ad8
Update kalosm to 0.4, without our set device functions. Less whisper …
lucksus Nov 11, 2025
fe711c0
Update p-diff-sync to latest holochain
lucksus Nov 11, 2025
d80af64
Revert "Update kalosm to 0.4, without our set device functions. Less …
lucksus Nov 11, 2025
0fd5822
p-diff-sync HC 0.6.0
lucksus Nov 11, 2025
7070ddb
DM language HC 0.6.0
lucksus Nov 11, 2025
a0debf1
agent language HC 0.6.0
lucksus Nov 11, 2025
155120a
getrandom custom backend
lucksus Nov 11, 2025
dd94d88
Modify language templating code to new mr_bundle structure
lucksus Nov 11, 2025
3b95d39
Prolog JSON parsing, resolve property refactorings after scryer update
lucksus Nov 12, 2025
b251de9
Remove p-diff-sync-socket-signalling
lucksus Nov 12, 2025
ee2e3c9
fmt
lucksus Nov 12, 2025
a5fd5d5
Cargo.lock
lucksus Nov 12, 2025
c08a201
bootstrap seed
lucksus Nov 12, 2025
06b7f2d
Remove p-diff-socket-signalling from CircleCI cache
lucksus Nov 13, 2025
ee9d7c2
Until we can rebuild CI docker image with kitsune, hot-upgrade Rust a…
lucksus Nov 13, 2025
97027e7
Fix rustup args
lucksus Nov 13, 2025
69f6701
yaml syntax
lucksus Nov 13, 2025
90b0c0f
Avoid .unwrap() in HC agent language
lucksus Nov 13, 2025
1278b23
Also hot-upgrade rust and HC in the integration test workflow
lucksus Nov 13, 2025
51788a8
Test Prolog JSON parser and handle empty cases
lucksus Nov 13, 2025
6e437b8
Guard the JSON extractor against non-list literals.
lucksus Nov 13, 2025
0472fc0
fmt
lucksus Nov 13, 2025
927a3da
Merge branch 'dev' into hc-0.6.0-rc.0
lucksus Nov 13, 2025
35d1883
Replace non-existent is_list/1 with catch/3
lucksus Nov 13, 2025
d56dcef
Fix Prolog to JSON for nested objects
lucksus Nov 14, 2025
d4cc9ad
Unit tests for new Prolog dict parsing code
lucksus Nov 16, 2025
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
24 changes: 14 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,15 @@ jobs:
resource_class: xlarge
steps:
- checkout
- run:
name: Hot-upgrade Rust to 1.88
command: ~/.cargo/bin/rustup default 1.88 && ~/.cargo/bin/rustup target add wasm32-unknown-unknown
- run:
name: Hot-upgrade Holochain CLI to 0.6.0-rc.1
command: ~/.cargo/bin/cargo install holochain_cli@0.6.0-rc.1
- restore_cache:
keys:
- rust-cache-{{ checksum "Cargo.lock" }}-v2
- rust-cache-{{ checksum "Cargo.lock" }}-1.88
- rust-cache-
- run:
name: cargo fmt --check
Expand Down Expand Up @@ -45,7 +51,7 @@ jobs:
no_output_timeout: 30m
command: cargo clippy --all --exclude ad4m-launcher
- save_cache:
key: rust-cache-{{ checksum "Cargo.lock" }}-v2
key: rust-cache-{{ checksum "Cargo.lock" }}-1.88
paths:
- ./target
- ~/.cargo/registry
Expand Down Expand Up @@ -78,6 +84,12 @@ jobs:
- checkout
- attach_workspace:
at: .
- run:
name: Hot-upgrade Rust to 1.88
command: ~/.cargo/bin/rustup default 1.88 && ~/.cargo/bin/rustup target add wasm32-unknown-unknown
- run:
name: Hot-upgrade Holochain CLI to 0.6.0-rc.1
command: ~/.cargo/bin/cargo install holochain_cli@0.6.0-rc.1
- restore_cache:
keys:
- agent-language-rust-cache-{{ checksum "bootstrap-languages/agent-language/hc-dna/Cargo.lock" }}
Expand All @@ -94,10 +106,6 @@ jobs:
keys:
- p-diff-sync-rust-cache-{{ checksum "bootstrap-languages/p-diff-sync/hc-dna/Cargo.lock" }}
- p-diff-sync-rust-cache-
- restore_cache:
keys:
- p-diff-sync-socket-signaling-rust-cache-{{ checksum "bootstrap-languages/p-diff-sync-socket-signaling/hc-dna/Cargo.lock" }}
- p-diff-sync-socket-signaling-rust-cache-
- run:
name: Install specific pnpm version
command: npm install -g pnpm@9.15.0
Expand Down Expand Up @@ -126,10 +134,6 @@ jobs:
key: p-diff-sync-rust-cache-{{ checksum "bootstrap-languages/p-diff-sync/hc-dna/Cargo.lock" }}
paths:
- ./bootstrap-languages/p-diff-sync/hc-dna/target
- save_cache:
key: p-diff-sync-socket-signaling-rust-cache-{{ checksum "bootstrap-languages/p-diff-sync-socket-signaling/hc-dna/Cargo.lock" }}
paths:
- ./bootstrap-languages/p-diff-sync-socket-signaling/hc-dna/target\
- run:
name: Install ffmpeg for transcription test
command: sudo apt-get update && sudo apt-get install ffmpeg --fix-missing
Expand Down
Loading