Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
801042c
upgrade
devsnek Sep 3, 2025
f78c9bf
Merge branch 'main' into upgrade
bartlomieju Sep 3, 2025
0f1eb76
some small progress
bartlomieju Sep 3, 2025
dcc7c19
bump v8
bartlomieju Sep 5, 2025
ce10b6b
fix
bartlomieju Sep 5, 2025
67fa229
revert
bartlomieju Sep 5, 2025
f6879b3
actual fixes
bartlomieju Sep 5, 2025
63b1a74
don't lint on Windows for the time being
bartlomieju Sep 5, 2025
dfbcb7e
turn off debug symbols
bartlomieju Sep 6, 2025
c1d78e8
Try again
bartlomieju Sep 6, 2025
310ff73
again
bartlomieju Sep 6, 2025
3f60a84
limit no of jobs
bartlomieju Sep 8, 2025
6c2f1c8
reset CI
bartlomieju Sep 8, 2025
0d27b74
always run cargo clean on windows
bartlomieju Sep 8, 2025
99fa977
disable debug info altogether
bartlomieju Sep 8, 2025
3defca6
Try to use windows-2025 image
bartlomieju Sep 8, 2025
307cf5c
Try setting `/PDBPAGESIZE`
littledivy Sep 8, 2025
4ec8429
-Csymbol-mangling-version=v0
littledivy Sep 8, 2025
4b5108c
fmt
littledivy Sep 8, 2025
fbc786d
try to only test tests
bartlomieju Sep 8, 2025
f3dc0b2
try -Ctarget-feature=+crt-static
ry Sep 8, 2025
180a31a
try /DEBUG:NONE
littledivy Sep 8, 2025
48d6e02
x
littledivy Sep 8, 2025
0a63853
try xl image
bartlomieju Sep 8, 2025
5a1ea0b
x
littledivy Sep 8, 2025
fab6974
use 2022-xl
bartlomieju Sep 8, 2025
8d9f90c
use 2022-xl 2
bartlomieju Sep 8, 2025
d875bd8
update expected output
bartlomieju Sep 8, 2025
7f2e8f5
update expected output
bartlomieju Sep 8, 2025
32cdfa9
revert changes
bartlomieju Sep 8, 2025
eeccaac
update
bartlomieju Sep 8, 2025
37e0699
skip debug info
bartlomieju Sep 8, 2025
ced44aa
move doctests to next step
bartlomieju Sep 8, 2025
00be939
env vars for rustdoc
bartlomieju Sep 8, 2025
7ec87db
try to use codegen-units=1
bartlomieju Sep 8, 2025
e4a3da4
revert
bartlomieju Sep 8, 2025
01cdb50
add comments, revert windows XL
bartlomieju Sep 8, 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
12 changes: 12 additions & 0 deletions ops/op2/test_cases_fail/lifetimes.stderr
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
error[E0200]: the trait `GarbageCollected` requires an `unsafe impl` declaration
--> $WORKSPACE/ops/op2/test_cases_fail/lifetimes.rs
|
| impl GarbageCollected for Wrap {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: the trait `GarbageCollected` enforces invariants that the compiler can't check. Review the trait documentation and make sure this implementation upholds those invariants before adding the `unsafe` keyword
help: add `unsafe` to this trait implementation
|
8 | unsafe impl GarbageCollected for Wrap {
| ++++++

error[E0716]: temporary value dropped while borrowed
--> $WORKSPACE/ops/op2/test_cases_fail/lifetimes.rs
|
Expand Down
Loading