10 lines
170 B
Plaintext
10 lines
170 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
set -xEeuo pipefail
|
||
|
|
||
|
cd "$(git rev-parse --show-toplevel)"
|
||
|
|
||
|
ci/build
|
||
|
ci/build --features defmt
|
||
|
ci/build --release
|
||
|
ci/build --features defmt --release
|