RaspberryPi_Pico_Sensors/.drone.yml

20 lines
384 B
YAML

---
kind: pipeline
type: docker
name: Build
steps:
- name: Submodules
image: alpine/git
commands:
- git submodule update --init --recursive
- name: Pico SDK Build
image: "git.minori.work/embedded_sdk/embedded-builder-arm:latest"
commands:
- mkdir build && cd build
- cmake ..
- make
environment:
PICO_SDK_FETCH_FROM_GIT: "true"