diff options
| author | Dario Nieuwenhuis <[email protected]> | 2021-03-02 21:20:00 +0100 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2021-03-02 21:20:00 +0100 |
| commit | 9bee576fd241f019c363919b0c29551c6b8ee4b2 (patch) | |
| tree | 96bfb71546ab96b02cb5c26d6b754793e4bd64e9 /ci.sh | |
| parent | f100383b3c094830fee4e54956795388bd5edec1 (diff) | |
Update embassy
Diffstat (limited to 'ci.sh')
| -rwxr-xr-x | ci.sh | 13 |
1 files changed, 13 insertions, 0 deletions
| @@ -0,0 +1,13 @@ | |||
| 1 | #!/bin/bash | ||
| 2 | |||
| 3 | set -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) | ||
