Skip to content

Commit c0422b2

Browse files
authored
Merge branch 'main' into test/security-test-suite
2 parents 3bab4ed + ed3f304 commit c0422b2

126 files changed

Lines changed: 15714 additions & 1044 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.cargo/audit.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,6 @@ ignore = [
1313
"RUSTSEC-2025-0134",
1414
# time: DoS via stack exhaustion — transitive dep via serde_with, pinned by soroban-sdk 22.0.0
1515
"RUSTSEC-2026-0009",
16+
# libcrux-poly1305: CVSS 4.0 parsing issue in advisory tooling; tracked upstream
17+
"RUSTSEC-2026-0073",
1618
]

.cargo/config.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@ linker = "clang"
88
linker = "clang"
99

1010
[build]
11-
target = "x86_64-pc-windows-gnu"
11+
# Use the Linux host target by default so CI (Linux runners) can build/tests.
12+
# Change this if you intentionally need a Windows cross-target here.
13+
target = "x86_64-unknown-linux-gnu"
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Analytics aggregate
2+
3+
on:
4+
push:
5+
branches:
6+
- feature/search-analytics-tracking
7+
schedule:
8+
- cron: '0 2 * * *' # nightly at 02:00 UTC
9+
10+
jobs:
11+
aggregate:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Setup Node
16+
uses: actions/setup-node@v4
17+
with:
18+
node-version: '18'
19+
- name: Run aggregator
20+
run: |
21+
node scripts/analytics/aggregate_search_events.js
22+
- name: Smoke test suggestions
23+
run: |
24+
node scripts/analytics/smoke_test_suggestions.js

0 commit comments

Comments
 (0)