Save pico firmware as an artifact

In the future, we could put this on the build server.
This commit is contained in:
Richard Bowman 2023-02-28 10:35:05 +00:00
parent d9e7c1429a
commit 4a8481a2d3

View file

@ -15,6 +15,12 @@ stages:
before_script:
- "pip install -U platformio"
job:
build:
stage: build
script: "pio run -e nano -e leonardo -e pico -e bluepill -e esp32"
script:
- "pio run -e nano -e leonardo -e pico -e bluepill -e esp32"
- mkdir -p builds
- cp .pio/build/pico/firmware.uf2 builds/
artifacts:
paths:
- builds/*