2022-06-07 18:14:58 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
steps:
|
|
|
|
- name: build
|
2022-06-07 18:16:28 +00:00
|
|
|
image: python:3.10
|
2022-06-07 18:14:58 +00:00
|
|
|
commands:
|
2022-06-07 19:44:26 +00:00
|
|
|
- sed -i "s/WIFISSID/$IOTSSID/" data/homie/config.json
|
2022-06-07 19:46:14 +00:00
|
|
|
- sed -i "s/WIFIPASS/$iotpwd/" data/homie/config.json
|
|
|
|
- sed -i "s/HOSTNAME/$hostname/g" data/homie/config.json
|
|
|
|
- sed -i "s/HOSTNAME/$hostname/g" data/homie/config.json
|
|
|
|
- sed -i "s/HOSTNAME/$hostname/g" platformio.ini
|
|
|
|
- cat data/homie/config.json
|
|
|
|
- pip install -U platformio
|
2022-06-07 19:52:07 +00:00
|
|
|
- platformio run --environment d1_mini
|
2022-06-07 18:14:58 +00:00
|
|
|
settings:
|
2022-06-07 19:29:06 +00:00
|
|
|
hostname:
|
2022-06-07 18:16:28 +00:00
|
|
|
from_secret: hostname
|
2022-06-07 19:41:28 +00:00
|
|
|
IOTSSID:
|
2022-06-07 19:10:14 +00:00
|
|
|
from_secret: iotssid
|
|
|
|
iotpwd:
|
|
|
|
from_secret: iotpwd
|
2022-06-07 19:52:07 +00:00
|
|
|
- name: release
|
|
|
|
commands:
|
|
|
|
- platformio run --target upload --environment d1_mini
|
|
|
|
- platformio run --target uploadfs --environment d1_mini
|
2022-06-07 18:14:58 +00:00
|
|
|
when:
|
2022-06-07 19:52:07 +00:00
|
|
|
event: tag
|