You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
550 B
19 lines
550 B
image: python:2.7
|
|
|
|
stages:
|
|
- build
|
|
|
|
before_script:
|
|
- pip install -U platformio
|
|
- platformio update
|
|
|
|
job:
|
|
stage: build
|
|
script:
|
|
- platformio ci --project-conf platformio.ini --board=lolin_d32_pro
|
|
# - cp ~/.platformio/packages/framework-arduinoespressif32/tools/sdk/bin/bootloader_dio_40m.bin .pioenvs/lolin_d32_pro/
|
|
# - cp ~/.platformio/packages/framework-arduinoespressif32/tools/partitions/default.bin .pioenvs/lolin_d32_pro/
|
|
variables: {PLATFORMIO_CI_SRC: "src"}
|
|
artifacts:
|
|
paths:
|
|
- ".pio/build/lolin_d32_pro/*.bin"
|
|
|