-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ci(action): pin nextest #6461
Merged
Merged
ci(action): pin nextest #6461
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The latest updates on your projects. Learn more about Vercel for Git ↗︎
10 Ignored Deployments
|
✅ This change can build |
🟢 CI successful 🟢Thanks |
kwonoj
force-pushed
the
build-test
branch
9 times, most recently
from
November 15, 2023 19:51
7c8bc30
to
38f58ff
Compare
Linux Benchmark for 7e8d77cClick to view benchmark
|
🟢 Turbopack Benchmark CI successful 🟢Thanks |
kwonoj
force-pushed
the
build-test
branch
2 times, most recently
from
November 15, 2023 21:16
e490049
to
16c6b89
Compare
kwonoj
force-pushed
the
build-test
branch
3 times, most recently
from
November 15, 2023 21:49
c7dbc5b
to
b149a60
Compare
Linux Benchmark for 1e571faClick to view benchmark
|
kwonoj
force-pushed
the
build-test
branch
17 times, most recently
from
November 16, 2023 22:15
6c2dc43
to
4486138
Compare
jridgewell
approved these changes
Nov 16, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Closes PACK-1969
CI was failing to run turbopack tests with obscure error message
Tried a bunch of bisect, and finally able to figure out the dependency chain
cargo-nextest
releases a new version, which was a culprit of above buginstall-action
silently installs new versionCargo's executable won't update unless explicitly specified, so this was not reproducible locally with currently installed version.
Mainly this is a side effect of cargo doesn't support dev deps executable (ref: rust-lang/cargo#2267). I tried to workaround via 3rd party pkg cargo-run-bin (https://github.com/dustinblackman/cargo-run-bin) but unfortunately it doesn't support Windows so it's not an easy option to adapt.