-
Notifications
You must be signed in to change notification settings - Fork 738
ci: use stable again moving forward Rust for Linux job #3189
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,7 +96,7 @@ if [ "$BINDGEN_RUST_FOR_LINUX_TEST" == "1" ]; then | |
# and each update should only contain this change. | ||
# | ||
# Both commit hashes and tags are supported. | ||
LINUX_VERSION=v6.14-rc1 | ||
LINUX_VERSION=v6.14 | ||
|
||
# Download Linux at a specific commit | ||
mkdir -p linux | ||
|
@@ -125,13 +125,13 @@ CONFIG_KUNIT=y | |
CONFIG_RUST_KERNEL_DOCTESTS=y | ||
EOF | ||
|
||
make -C linux KBUILD_VERBOSE=1 LLVM=1 -j$(($(nproc) + 1)) \ | ||
make -C linux LLVM=1 -j$(($(nproc) + 1)) \ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this might still be useful but either way. Yeah maybe it's too verbose. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, I wasn't sure if you intended to keep it or it was just for debugging the issue, so I left the tree as it was before this happened. It is fairly verbose, yeah; on the other hand, we build a tiny part of the kernel, so it should be OK. |
||
rustavailable \ | ||
defconfig \ | ||
rfl-for-bindgen-ci.config | ||
|
||
# Build Rust for Linux | ||
make -C linux LLVM=1 KBUILD_VERBOSE=1 -j$(($(nproc) + 1)) \ | ||
make -C linux LLVM=1 -j$(($(nproc) + 1)) \ | ||
samples/rust/rust_minimal.o \ | ||
samples/rust/rust_print_main.o \ | ||
drivers/net/phy/ax88796b_rust.o | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gah, so I was off by a RC then ;)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, that was very bad luck... :)