-
-
Notifications
You must be signed in to change notification settings - Fork 284
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Original PR:
Breaking rustc --version
s:
- rustc 1.78.0-beta.2 (277d06bc9 2024-03-23)
- rustc 1.79.0-nightly (5f2c7d2bf 2024-03-25)
Broken command:
#!/bin/sh
for rustver in beta nightly; do
rustup default "$rustver"
cargo clean
cargo install --path cargo-pgrx --locked
for pgver in 12 13 14 15 16; do
cargo test -p pgrx-tests \
--features "pg$pgver" --no-default-features \
1>"$rustver-pg$pgver.stdout" 2>"$rustver-pg$pgver.stderr";
done
done
Output differs between versions, not sure if on different commits yet, I found the discrepancy first on nightly but did the beta bisect first.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working