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 62
62
63
63
- name : " Install Rustup Components"
64
64
run : rustup component add rust-src llvm-tools-preview
65
- - name : " Install cargo-xbuild"
66
- run : cargo install cargo-xbuild --debug
67
65
68
66
# install QEMU
69
67
- name : Install QEMU (Linux)
@@ -103,20 +101,20 @@ jobs:
103
101
shell : bash {0}
104
102
working-directory : example-kernels
105
103
106
- - name : ' Run `cargo xrun ` for "runner" kernel'
104
+ - name : ' Run `cargo run ` for "runner" kernel'
107
105
run : |
108
- cargo xrun
106
+ cargo run
109
107
if [ $? -eq 109 ]; then (exit 0); else (exit 1); fi
110
108
shell : bash {0}
111
109
working-directory : example-kernels/runner
112
110
113
- - run : cargo xtest
111
+ - run : cargo test
114
112
working-directory : example-kernels/runner-test
115
- name : ' Run `cargo xtest ` for "runner-test" kernel'
113
+ name : ' Run `cargo test ` for "runner-test" kernel'
116
114
117
- - run : cargo xtest -Z doctest-xcompile
115
+ - run : cargo test -Z doctest-xcompile
118
116
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'
120
118
121
119
check_formatting :
122
120
name : " Check Formatting"
You can’t perform that action at this time.
0 commit comments