File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change 6262
6363 - name : " Install Rustup Components"
6464 run : rustup component add rust-src llvm-tools-preview
65- - name : " Install cargo-xbuild"
66- run : cargo install cargo-xbuild --debug
6765
6866 # install QEMU
6967 - name : Install QEMU (Linux)
@@ -103,20 +101,20 @@ jobs:
103101 shell : bash {0}
104102 working-directory : example-kernels
105103
106- - name : ' Run `cargo xrun ` for "runner" kernel'
104+ - name : ' Run `cargo run ` for "runner" kernel'
107105 run : |
108- cargo xrun
106+ cargo run
109107 if [ $? -eq 109 ]; then (exit 0); else (exit 1); fi
110108 shell : bash {0}
111109 working-directory : example-kernels/runner
112110
113- - run : cargo xtest
111+ - run : cargo test
114112 working-directory : example-kernels/runner-test
115- name : ' Run `cargo xtest ` for "runner-test" kernel'
113+ name : ' Run `cargo test ` for "runner-test" kernel'
116114
117- - run : cargo xtest -Z doctest-xcompile
115+ - run : cargo test -Z doctest-xcompile
118116 working-directory : example-kernels/runner-doctest
119- name : ' Run `cargo xtest -Z doctest-xcompile` for "runner-doctest" kernel'
117+ name : ' Run `cargo test -Z doctest-xcompile` for "runner-doctest" kernel'
120118
121119 check_formatting :
122120 name : " Check Formatting"
You can’t perform that action at this time.
0 commit comments