File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -64,11 +64,25 @@ jobs:
6464 working-directory : fuzz
6565 run : ./travis_fuzz.sh
6666
67+ no-std :
68+ name : no_std
69+ runs-on : ubuntu-latest
70+ steps :
71+ - uses : actions/checkout@v4
72+ - name : Install toolchain
73+ uses : dtolnay/rust-toolchain@master
74+ with :
75+ toolchain : stable
76+ target : thumbv7m-none-eabi
77+ - name : Cargo build
78+ run : cargo build --verbose
79+
6780 build_result :
6881 name : homu build finished
6982 runs-on : ubuntu-latest
7083 needs :
7184 - " linux-ci"
85+ - " no-std"
7286
7387 steps :
7488 - name : Mark the job as successful
Original file line number Diff line number Diff line change 5555#[ doc( hidden) ]
5656pub extern crate alloc;
5757
58- // #[cfg(any(test, feature = "write"))]
58+ #[ cfg( any( test, feature = "write" ) ) ]
5959extern crate std;
6060
6161#[ cfg( test) ]
You can’t perform that action at this time.
0 commit comments