diff --git a/.github/actions/pio-build/entrypoint.sh b/.github/actions/pio-build/entrypoint.sh index b51c1ba630..1e4154b137 100755 --- a/.github/actions/pio-build/entrypoint.sh +++ b/.github/actions/pio-build/entrypoint.sh @@ -11,6 +11,15 @@ platformio platform install "https://github.com/platformio/platform-ststm32.git" python3 -c "import json; import os; fp=open(os.path.expanduser('~/.platformio/platforms/ststm32/platform.json'), 'r+'); data=json.load(fp); data['packages']['framework-arduinoststm32']['version'] = '*'; fp.seek(0); fp.truncate(); json.dump(data, fp); fp.close()" || { exit 1 } + +# Fix for variant path change while not updated in PIO +python3 -c "import json; import os; fp=open(os.path.expanduser('~/.platformio/platforms/ststm32/boards/remram_v1.json'), 'r+'); data=json.load(fp); data['build']['variant'] = '3dprinter/REMRAM_V1'; fp.seek(0); fp.truncate(); json.dump(data, fp); fp.close()" || { + exit 1 +} +python3 -c "import json; import os; fp=open(os.path.expanduser('~/.platformio/platforms/ststm32/boards/blackpill_f103c8.json'), 'r+'); data=json.load(fp); data['build']['variant'] = 'Generic/F1/PILL_F103XX'; fp.seek(0); fp.truncate(); json.dump(data, fp); fp.close()" || { + exit 1 +} + ln --symbolic "$GITHUB_WORKSPACE" "$HOME/.platformio/packages/framework-arduinoststm32" || { exit 1 }