diff options
Diffstat (limited to 'cortex-m-rt/ci/script.sh')
-rwxr-xr-x | cortex-m-rt/ci/script.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cortex-m-rt/ci/script.sh b/cortex-m-rt/ci/script.sh index a9c2b19..4683566 100755 --- a/cortex-m-rt/ci/script.sh +++ b/cortex-m-rt/ci/script.sh @@ -57,6 +57,11 @@ main() { done cargo rustc --target "$TARGET" --example device --features device -- $linker cargo rustc --target "$TARGET" --example device --features device --release -- $linker + + cargo rustc --target "$TARGET" --example minimal --features set-sp -- $linker + cargo rustc --target "$TARGET" --example minimal --features set-sp --release -- $linker + cargo rustc --target "$TARGET" --example minimal --features set-vtor -- $linker + cargo rustc --target "$TARGET" --example minimal --features set-vtor --release -- $linker done fi |