pico-hsm/workflows/autobuild.sh
Pol Henarejos 79372ced2f
Just install the SDK in the workflow
Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
2022-08-18 23:21:42 +02:00

8 lines
219 B
Bash
Executable file

#!/bin/bash
apt install cmake gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib
git clone https://github.com/raspberrypi/pico-sdk
mkdir build
cd build
cmake .. -DDPICO_SDK_PATH=../pico-sdk
make