Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
63b32a4
Start implementing Huggingface based ingestion
zcourts Oct 30, 2025
f8ebc60
Start doing some testing of the hugging face ingestion features
zcourts Oct 30, 2025
9e6a78b
Fully implemented fetching from hugging face but our earlier naive as…
zcourts Nov 1, 2025
7a6f2b6
Correct worker auth context and fix test failures
zcourts Nov 1, 2025
13e43c9
Clean up all the warnings
zcourts Nov 1, 2025
96aa939
Flesh out the cli
zcourts Nov 1, 2025
16e2c19
Implement CLI and test suite to go with it
zcourts Nov 1, 2025
8624846
Add missing target_region...how did it run locally?????
zcourts Nov 1, 2025
4354aad
Add restrictions to region names making sure they're DNS friendly
zcourts Nov 1, 2025
7f53864
Use unique bucket names for tests so parallel runs don't conflict in CI
zcourts Nov 1, 2025
8127014
Start restructuring for features being enabled/disabled
zcourts Nov 2, 2025
0b76736
Refactor workspace for open-core model
zcourts Nov 2, 2025
91c9898
Expose interceptor handle and wire enterprise route extender; enable …
zcourts Nov 2, 2025
6469da6
Enterprise feature not needed
zcourts Nov 2, 2025
81456b4
:(
zcourts Nov 2, 2025
db2573a
proxy enterprise feature down to anvil dep
zcourts Nov 2, 2025
8abfc4f
Tweak featutre activation
zcourts Nov 2, 2025
2ac6c98
Try an unsafe rust approach as feature flagging it isn't cutting it
zcourts Nov 2, 2025
1e16cfc
Trying to use an extern based approach to enterprise extensions
zcourts Nov 2, 2025
a7ef4b7
Try using a registration based approach to enterprise extensions
zcourts Nov 2, 2025
dc32a3e
add some logs
zcourts Nov 2, 2025
63cfff2
Implement FFI streaming loader with Python SDK
zcourts Nov 8, 2025
a9a31ca
Add basic OSS modifications needed to support admin console
zcourts Nov 8, 2025
61f9d26
Additional admin related APIs
zcourts Nov 8, 2025
e5ff065
Introduce admin users as a concept
zcourts Nov 10, 2025
360c98e
Run on custom larger runner
zcourts Nov 11, 2025
e0fcc71
Restore object listing query
zcourts Nov 11, 2025
be17257
Add a bunch of sleep to test a hypothesis about the last ci failures
zcourts Nov 11, 2025
0457ea9
Try using an objective wait between the cli calls
zcourts Nov 11, 2025
286c1e0
Real fix is the hard coded app - we were correctly getting permission…
zcourts Nov 11, 2025
a7a48d5
Try limiting prallel tests
zcourts Nov 11, 2025
60d5636
Try using grpc based checks to wait for bucket availability in tests
zcourts Nov 11, 2025
6179dff
Drop this nonesense
zcourts Nov 12, 2025
137d250
Looking increasingly like a race condition in the CI so wait for gRPC…
zcourts Nov 12, 2025
1a9bd61
sigh
zcourts Nov 13, 2025
2a4bd2b
get logs only for failing tests
zcourts Nov 13, 2025
6a0b4bc
and now?
zcourts Nov 13, 2025
c582023
Old school println
zcourts Nov 13, 2025
b9e7f2e
usng tracing to log, reduce noise from gossip in tests
zcourts Nov 13, 2025
bb0b03b
Force early failure for logs
zcourts Nov 13, 2025
bb5addc
Ensure test logger's online initialised once
zcourts Nov 13, 2025
76f78aa
The mystery deepens
zcourts Nov 13, 2025
e193658
Use per test URL for the global DB so the server and CLI connects to …
zcourts Nov 13, 2025
722a181
Rolling back wait_for_bucket based nonesense
zcourts Nov 13, 2025
c3e4902
Pass config in and stop depending on HOME
zcourts Nov 13, 2025
ac4b352
Put back all CI setup - the issue was race condition or other bug cau…
zcourts Nov 13, 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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:

jobs:
build-and-test:
runs-on: ubuntu-latest
runs-on: worka-l1

services:
postgres:
Expand Down Expand Up @@ -93,9 +93,9 @@ jobs:
- name: Run All Tests
env:
ANVIL_IMAGE: ${{ steps.img.outputs.tag }}
run: cargo test --workspace -- --nocapture
run: cargo test -p anvil --test cli_extended -- --nocapture

# --- Release Steps ---
# --- Release Steps ---
# These steps will only run on a successful push to the main branch.

- name: Log in to GitHub Container Registry
Expand Down
Loading