@@ -260,9 +260,12 @@ jobs:
260
260
name : Add wasm32 target
261
261
command : rustup target add wasm32-unknown-unknown && rustup target list --installed
262
262
- run :
263
- name : Build library for native target (no_std)
263
+ name : Add no_std target
264
+ command : rustup target add thumbv7em-none-eabi && rustup target list --installed
265
+ - run :
266
+ name : Build library for no_std target
264
267
working_directory : ~/project/packages/std
265
- command : cargo build --locked --no-default-features
268
+ command : cargo build --locked --no-default-features --target thumbv7em-none-eabi
266
269
- run :
267
270
name : Build library for native target (only "std" feature)
268
271
working_directory : ~/project/packages/std
@@ -276,9 +279,9 @@ jobs:
276
279
working_directory : ~/project/packages/std
277
280
command : cargo test --locked --no-default-features --features std
278
281
- run :
279
- name : Build library for native target (all features "no_std")
282
+ name : Build library for no_std target (all features "no_std")
280
283
working_directory : ~/project/packages/std
281
- command : cargo build --locked --no-default-features --features abort,iterator,staking,stargate,std, cosmwasm_1_1
284
+ command : cargo build --locked --no-default-features --features abort,iterator,staking,stargate,cosmwasm_1_1 --target thumbv7em-none-eabi
282
285
- run :
283
286
name : Build library for native target (all features)
284
287
working_directory : ~/project/packages/std
0 commit comments