@@ -26,34 +26,35 @@ jobs:
2626 run : |
2727 echo "wifi_ssid: \"myWifiSsid\"" > secrets.yaml
2828 echo "wifi_password: \"myWifiPassword\"" >> secrets.yaml
29- echo "solar_router_ota_password : \"mySolarRouterOtaPassword\"" >> secrets.yaml
29+ echo "ota_password : \"mySolarRouterOtaPassword\"" >> secrets.yaml
3030 echo "api_encryption_key: \"8q4u9dNBGMcsPemx+Q+WzLTU+mLXHAgPsrTpGjyV1hs=\"" >> secrets.yaml
3131 echo "hotspot_password: \"myHotspotPassword\"" >> secrets.yaml
3232 echo "proxy_api_encryption_key: \"8q4u9dNBGMcsPemx+Q+WzLTU+mLXHAgPsrTpGjyV1hs=\"" >> secrets.yaml
3333
3434 - name : Compile esp32-proxy-client.yaml
3535 continue-on-error : true
36- run : esphome compile esp32-proxy-client.yaml
36+ run : tools/convert_to_local_source_for_ci.sh esp32-proxy-client.yaml && esphome compile work_in_progress.yaml
3737 id : conf1
3838
39- - name : Compile esp32-standalone .yaml
39+ - name : Compile wt32-eth01-solar-water-heater .yaml
4040 continue-on-error : true
41- run : esphome compile esp32-standalone .yaml
41+ run : tools/convert_to_local_source_for_ci.sh wt32-eth01-solar-water-heater.yaml && esphome compile work_in_progress .yaml
4242 id : conf2
4343
44- - name : Compile esp8266-proof-of-concept .yaml
44+ - name : Compile esp8266-standalone_on_off .yaml
4545 continue-on-error : true
46- run : esphome compile esp8266-proof-of-concept .yaml
46+ run : tools/convert_to_local_source_for_ci.sh esp8266-standalone_on_off.yaml && esphome compile work_in_progress .yaml
4747 id : conf3
4848
4949 - name : Compile esp8285-power-meter-proxy.yaml
5050 continue-on-error : true
51- run : esphome compile esp8285-power-meter-proxy.yaml
51+ run : tools/convert_to_local_source_for_ci.sh esp8285-power-meter-proxy.yaml && esphome compile work_in_progress .yaml
5252 id : conf4
5353
5454 - name : Check for compile errors
5555 run : |
5656 if [ ${{ steps.conf1.outcome }} == 'failure' ] || [ ${{ steps.conf2.outcome }} == 'failure' || ${{ steps.conf3.outcome }} == 'failure' ] || [ ${{ steps.conf4.outcome }} == 'failure']; then
5757 echo "One or more compilations failed"
5858 exit 1
59- fi
59+ fi
60+
0 commit comments