File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1818 steps :
1919 - uses : actions/checkout@v4
2020
21- - name : Install stable
21+ - name : Install nightly
2222 uses : dtolnay/rust-toolchain@master
2323 with :
2424 # TODO: Should ideally be stable, but we use some nightly-only
@@ -154,7 +154,7 @@ jobs:
154154 - name : Install stable
155155 uses : dtolnay/rust-toolchain@master
156156 with :
157- toolchain : stable
157+ toolchain : 1.85.1
158158 - name : Install libtinfo
159159 if : matrix.os == 'ubuntu-latest'
160160 run : |
@@ -171,7 +171,7 @@ jobs:
171171 BINDGEN_FEATURE_RUNTIME : ${{matrix.feature_runtime}}
172172 BINDGEN_FEATURE_EXTRA_ASSERTS : ${{matrix.feature_extra_asserts}}
173173 BINDGEN_NO_DEFAULT_FEATURES : ${{matrix.no_default_features}}
174- BINDGEN_RUST_FOR_LINUX_TEST : 0
174+ BINDGEN_RUST_FOR_LINUX_TEST : ${{matrix.os == 'ubuntu-latest' && matrix.llvm_version == '16.0' && matrix.feature_extra_asserts == 0 && 1 || 0}}
175175 run : ./ci/test.sh
176176
177177 check-cfg :
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ if [ "$BINDGEN_RUST_FOR_LINUX_TEST" == "1" ]; then
9696 # and each update should only contain this change.
9797 #
9898 # Both commit hashes and tags are supported.
99- LINUX_VERSION=v6.13 -rc1
99+ LINUX_VERSION=v6.14 -rc1
100100
101101 # Download Linux at a specific commit
102102 mkdir -p linux
@@ -125,13 +125,13 @@ CONFIG_KUNIT=y
125125CONFIG_RUST_KERNEL_DOCTESTS=y
126126EOF
127127
128- make -C linux LLVM=1 -j$(( $(nproc) + 1 )) \
128+ make -C linux KBUILD_VERBOSE=1 LLVM=1 -j$(( $(nproc) + 1 )) \
129129 rustavailable \
130130 defconfig \
131131 rfl-for-bindgen-ci.config
132132
133133 # Build Rust for Linux
134- make -C linux LLVM=1 -j$(( $(nproc) + 1 )) \
134+ make -C linux LLVM=1 KBUILD_VERBOSE=1 -j$(( $(nproc) + 1 )) \
135135 samples/rust/rust_minimal.o \
136136 samples/rust/rust_print_main.o \
137137 drivers/net/phy/ax88796b_rust.o
You can’t perform that action at this time.
0 commit comments