aboutsummaryrefslogtreecommitdiff
path: root/ci.sh
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2021-03-02 21:20:00 +0100
committerDario Nieuwenhuis <[email protected]>2021-03-02 21:20:00 +0100
commit9bee576fd241f019c363919b0c29551c6b8ee4b2 (patch)
tree96bfb71546ab96b02cb5c26d6b754793e4bd64e9 /ci.sh
parentf100383b3c094830fee4e54956795388bd5edec1 (diff)
Update embassy
Diffstat (limited to 'ci.sh')
-rwxr-xr-xci.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/ci.sh b/ci.sh
new file mode 100755
index 000000000..385379dec
--- /dev/null
+++ b/ci.sh
@@ -0,0 +1,13 @@
1#!/bin/bash
2
3set -euxo pipefail
4
5# build for std
6(cd embassy-net; cargo build --features log)
7
8# build for embedded
9(cd embassy-net; cargo build --target thumbv7em-none-eabi --features log)
10(cd embassy-net; cargo build --target thumbv7em-none-eabi --features defmt,smoltcp/defmt)
11
12# build examples
13(cd embassy-net-examples; cargo build)