You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo -1 | sudo tee /proc/sys/kernel/perf_event_paranoid
314
+
315
+
- uses: Swatinem/rust-cache@v2
316
+
317
+
- name: Build collector
318
+
run: cargo build -p collector
319
+
320
+
- name: Gather data
321
+
run: |
322
+
cargo run --bin collector bench_local `which rustc` --include syn --id version1 --db postgresql://postgres:postgres@127.0.0.1:5432/postgres
323
+
cargo run --bin collector bench_local `rustup +nightly which rustc` --include syn --id version2 --db postgresql://postgres:postgres@127.0.0.1:5432/postgres
324
+
325
+
- name: Build site
326
+
run: cargo build --bin site
327
+
328
+
# Check that data from the /get endpoint can be successfully queried.
329
+
- name: Query compare page data
330
+
run: |
331
+
DATABASE_URL=postgresql://postgres:postgres@127.0.0.1:5432/postgres cargo run --bin site &
0 commit comments