We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55ad82b commit 3a4840fCopy full SHA for 3a4840f
.github/workflows/ci.yaml
@@ -59,3 +59,19 @@ jobs:
59
- run: "grep 'my_i32: \\+123321' qemu-stdout.log"
60
- if: matrix.module == 'loadable'
61
run: grep -F 'Rust Example (exit)' qemu-stdout.log
62
+
63
+ # Report
64
+ - if: matrix.outputdir == 'src' && matrix.module == 'loadable'
65
+ run: ls -l drivers/char/rust_example/rust_example.ko
66
+ - if: matrix.outputdir == 'build' && matrix.module == 'loadable'
67
+ run: ls -l build/drivers/char/rust_example/rust_example.ko
68
69
+ - if: matrix.outputdir == 'src'
70
+ run: ls -l vmlinux arch/x86/boot/bzImage
71
+ - if: matrix.outputdir == 'build'
72
+ run: ls -l build/vmlinux build/arch/x86/boot/bzImage
73
74
75
+ run: size vmlinux
76
77
+ run: size build/vmlinux
0 commit comments