image build geändert
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
This commit is contained in:
parent
54b4592e5f
commit
96e8a08214
13
.drone.yml
13
.drone.yml
|
@ -18,8 +18,11 @@ steps:
|
||||||
- name: build
|
- name: build
|
||||||
image: suculent/platformio-docker-build
|
image: suculent/platformio-docker-build
|
||||||
commands:
|
commands:
|
||||||
# Build image
|
# Build images
|
||||||
- platformio run --environment d1_mini
|
- platformio run --environment d1_mini
|
||||||
|
- |
|
||||||
|
chmod u+x ./configurefs.sh
|
||||||
|
./configurefs.sh
|
||||||
- name: upload image
|
- name: upload image
|
||||||
image: curlimages/curl
|
image: curlimages/curl
|
||||||
commands:
|
commands:
|
||||||
|
@ -35,12 +38,12 @@ steps:
|
||||||
# Upload file system image with espota-gateway, leave it to espota-gateway to retry often enough
|
# Upload file system image with espota-gateway, leave it to espota-gateway to retry often enough
|
||||||
#- |
|
#- |
|
||||||
# curl --insecure --no-progress-meter --fail-with-body --request POST --url "https://espota.ctdo.de/" --header "Content-Type: multipart/form-data" --form ip="$lastknownip" --form spiffs=@.pio/build/d1_mini/spiffs.bin --no-buffer
|
# curl --insecure --no-progress-meter --fail-with-body --request POST --url "https://espota.ctdo.de/" --header "Content-Type: multipart/form-data" --form ip="$lastknownip" --form spiffs=@.pio/build/d1_mini/spiffs.bin --no-buffer
|
||||||
- name: build configs
|
- name: upload configs
|
||||||
image: suculent/platformio-docker-build
|
image: curlimages/curl
|
||||||
commands:
|
commands:
|
||||||
- |
|
- |
|
||||||
chmod u+x ./configureandupload.sh
|
chmod u+x ./uploadfs.sh
|
||||||
./configureandupload.sh
|
./uploadfs.sh
|
||||||
environment:
|
environment:
|
||||||
IOTSSID:
|
IOTSSID:
|
||||||
from_secret: iotssid
|
from_secret: iotssid
|
||||||
|
|
|
@ -9,8 +9,10 @@ do
|
||||||
sed -i "s/HOSTNAME/${curhost}/g" data/homie/config.json
|
sed -i "s/HOSTNAME/${curhost}/g" data/homie/config.json
|
||||||
# Build image with these parameters
|
# Build image with these parameters
|
||||||
platformio run --target buildfs --environment d1_mini
|
platformio run --target buildfs --environment d1_mini
|
||||||
|
# Save this image
|
||||||
|
cp .pio/build/d1_mini/spiffs.bin .pio/build/d1_mini/spiffs_${curhost}.bin
|
||||||
# Upload this image
|
# Upload this image
|
||||||
curl --insecure --no-progress-meter --fail-with-body --request POST --url "https://espota.ctdo.de/" --header "Content-Type: multipart/form-data" --form ip="$curip" --form spiffs=@.pio/build/d1_mini/spiffs.bin --no-buffer
|
# curl --insecure --no-progress-meter --fail-with-body --request POST --url "https://espota.ctdo.de/" --header "Content-Type: multipart/form-data" --form ip="$curip" --form spiffs=@.pio/build/d1_mini/spiffs.bin --no-buffer
|
||||||
# Revert config.json
|
# Revert config.json
|
||||||
cp data/homie/config.json.sample data/homie/config.json
|
cp data/homie/config.json.sample data/homie/config.json
|
||||||
done < <(cat lastknownhostips)
|
done < <(cat lastknownhostips)
|
|
@ -0,0 +1,7 @@
|
||||||
|
#!/bin/bash
|
||||||
|
while IFS="," read -r curhost curip
|
||||||
|
do
|
||||||
|
echo "Host ${curhost} and IP ${curip}"
|
||||||
|
# Upload this image
|
||||||
|
curl --insecure --no-progress-meter --fail-with-body --request POST --url "https://espota.ctdo.de/" --header "Content-Type: multipart/form-data" --form ip="$curip" --form spiffs=@.pio/build/d1_mini/spiffs_${curhost}.bin --no-buffer
|
||||||
|
done < <(cat lastknownhostips)
|
Loading…
Reference in New Issue