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:
64
64
working-directory : fuzz
65
65
run : ./travis_fuzz.sh
66
66
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
+
67
80
build_result :
68
81
name : homu build finished
69
82
runs-on : ubuntu-latest
70
83
needs :
71
84
- " linux-ci"
85
+ - " no-std"
72
86
73
87
steps :
74
88
- name : Mark the job as successful
Original file line number Diff line number Diff line change 55
55
#[ doc( hidden) ]
56
56
pub extern crate alloc;
57
57
58
- // #[cfg(any(test, feature = "write"))]
58
+ #[ cfg( any( test, feature = "write" ) ) ]
59
59
extern crate std;
60
60
61
61
#[ cfg( test) ]
You can’t perform that action at this time.
0 commit comments