Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 34s
notify.sx: reminders + digests as durable flows over an injected transport. A flow requests delivery (suspend); the host dispatch sends and resumes with the outcome. At-least-once + idempotent (transport dedups by msg id; replay logs outcomes). Retry rides suspend/resume with distinct per-attempt tags, bounded by maxn. Digest delivers a batch with per-message outcomes. 182/182 green. Delivery core is the delivery-on-sx extraction seam. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
53 lines
1.3 KiB
Plaintext
53 lines
1.3 KiB
Plaintext
# events-on-sx conformance config — sourced by lib/guest/conformance.sh.
|
|
|
|
LANG_NAME=events
|
|
MODE=dict
|
|
SCOREBOARD_DIR=lib/events
|
|
|
|
PRELOADS=(
|
|
spec/stdlib.sx
|
|
lib/r7rs.sx
|
|
lib/datalog/tokenizer.sx
|
|
lib/datalog/parser.sx
|
|
lib/datalog/unify.sx
|
|
lib/datalog/db.sx
|
|
lib/datalog/builtins.sx
|
|
lib/datalog/aggregates.sx
|
|
lib/datalog/strata.sx
|
|
lib/datalog/eval.sx
|
|
lib/datalog/api.sx
|
|
lib/datalog/magic.sx
|
|
lib/events/calendar.sx
|
|
lib/events/availability.sx
|
|
lib/persist/event.sx
|
|
lib/persist/backend.sx
|
|
lib/persist/log.sx
|
|
lib/persist/kv.sx
|
|
lib/persist/concurrency.sx
|
|
lib/persist/api.sx
|
|
lib/events/booking.sx
|
|
lib/events/ticket.sx
|
|
lib/guest/lex.sx
|
|
lib/guest/reflective/env.sx
|
|
lib/guest/reflective/quoting.sx
|
|
lib/scheme/parser.sx
|
|
lib/scheme/eval.sx
|
|
lib/scheme/runtime.sx
|
|
lib/flow/spec.sx
|
|
lib/flow/store.sx
|
|
lib/flow/remote.sx
|
|
lib/flow/host.sx
|
|
lib/flow/api.sx
|
|
lib/events/notify.sx
|
|
lib/events/api.sx
|
|
)
|
|
|
|
SUITES=(
|
|
"calendar:lib/events/tests/calendar.sx:(ev-calendar-tests-run!)"
|
|
"availability:lib/events/tests/availability.sx:(ev-availability-tests-run!)"
|
|
"api:lib/events/tests/api.sx:(ev-api-tests-run!)"
|
|
"booking:lib/events/tests/booking.sx:(ev-booking-tests-run!)"
|
|
"ticket:lib/events/tests/ticket.sx:(ev-ticket-tests-run!)"
|
|
"notify:lib/events/tests/notify.sx:(ev-notify-tests-run!)"
|
|
)
|