You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
microzig/tools/validate-all-examples.sh

12 lines
301 B
Bash

#!/bin/sh
set -e
root="$(dirname "$(realpath "$0")")"
examples="espressif/esp stmicro/stm32 nordic/nrf5x gigadevice/gd32 raspberrypi/rp2040 nxp/lpc microchip/atsam" # microchip/avr (does not build with 0.11)
for key in ${examples}; do
"${root}/validate-example.py" --example "$key" "$@"
done