configureandupload.sh
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
37cca59f8e
commit
f58e5b5e5c
17
.drone.yml
17
.drone.yml
|
@ -39,21 +39,8 @@ steps:
|
||||||
image: suculent/platformio-docker-build
|
image: suculent/platformio-docker-build
|
||||||
commands:
|
commands:
|
||||||
- |
|
- |
|
||||||
while IFS="," read -r curhost, curip
|
chmod u+x ./configureandupload.sh
|
||||||
do
|
./configureandupload.sh
|
||||||
echo "Host ${curhost} and IP ${curip}"
|
|
||||||
cp data/homie/config.json data/homie/config.json.sample
|
|
||||||
sed -i "s/WIFISSID/$IOTSSID/" data/homie/config.json
|
|
||||||
sed -i "s/WIFIPASS/$iotpwd/" data/homie/config.json
|
|
||||||
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
|
|
||||||
platformio run --target buildfs --environment d1_mini
|
|
||||||
# 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
|
|
||||||
# Revert config.json
|
|
||||||
cp data/homie/config.json.sample data/homie/config.json
|
|
||||||
done < <(cat lastknownhostips)
|
|
||||||
environment:
|
environment:
|
||||||
IOTSSID:
|
IOTSSID:
|
||||||
from_secret: iotssid
|
from_secret: iotssid
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
#!/bin/bash
|
||||||
|
while IFS="," read -r curhost, curip
|
||||||
|
do
|
||||||
|
echo "Host ${curhost} and IP ${curip}"
|
||||||
|
cp data/homie/config.json data/homie/config.json.sample
|
||||||
|
sed -i "s/WIFISSID/$IOTSSID/" data/homie/config.json
|
||||||
|
sed -i "s/WIFIPASS/$iotpwd/" data/homie/config.json
|
||||||
|
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
|
||||||
|
platformio run --target buildfs --environment d1_mini
|
||||||
|
# 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
|
||||||
|
# Revert config.json
|
||||||
|
cp data/homie/config.json.sample data/homie/config.json
|
||||||
|
done < <(cat lastknownhostips)
|
Loading…
Reference in New Issue