We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Unable to build XZG
I've setup a Debian machine, and per the README have installed npm (from Debian repos) and platformio (using their installer script).
However, when I try to run platformio run, I get the following error:
platformio run
Verbose mode can be enabled via -v, --verbose option
-v, --verbose
██╗░░██╗███████╗░██████╗░ ╚██╗██╔╝╚════██║██╔════╝░ ░╚███╔╝░░░███╔═╝██║░░██╗░ ░██╔██╗░██╔══╝░░██║░░╚██╗ ██╔╝╚██╗███████╗╚██████╔╝ ╚═╝░░╚═╝╚══════╝░╚═════╝░
Build: 20240730
Try to build WEB files
npm install --silent sh: 1: npm: not found *** Error 127 npx gulp xzg sh: 1: npx: not found *** Error 127
Finish building WEB files
CONFIGURATION: https://docs.platformio.org/page/boards/espressif32/esp32-solo1.html PLATFORM: Espressif 32 (2023.7.0) > Espressif Generic ESP32-solo1 4M Flash HARDWARE: ESP32 160MHz, 320KB RAM, 4MB Flash DEBUG: Current (cmsis-dap) External (cmsis-dap, esp-bridge, esp-prog, iot-bus-jtag, jlink, minimodule, olimex-arm-usb-ocd, olimex-arm-usb-ocd-h, olimex-arm-usb-tiny-h, olimex-jtag-tiny, tumpa) PACKAGES:
Environment Status Duration
prod-solo FAILED 00:00:06.975 ======================================================================================================= 1 failed, 0 succeeded in 00:00:06.975 =======================================================================================================
The text was updated successfully, but these errors were encountered:
Your machine doesn't have npm
Sorry, something went wrong.
Maybe it's better to clone the repository and build it in the cloud?
No branches or pull requests
Describe the bug
Unable to build XZG
I've setup a Debian machine, and per the README have installed npm (from Debian repos) and platformio (using their installer script).
However, when I try to run
platformio run
, I get the following error:``
$ platformio run
Processing prod-solo (platform: https://github.com/tasmota/platform-espressif32/releases/download/2023.07.00/platform-espressif32.zip; board: esp32-solo1; framework: arduino)
Verbose mode can be enabled via
-v, --verbose
option██╗░░██╗███████╗░██████╗░
╚██╗██╔╝╚════██║██╔════╝░
░╚███╔╝░░░███╔═╝██║░░██╗░
░██╔██╗░██╔══╝░░██║░░╚██╗
██╔╝╚██╗███████╗╚██████╔╝
╚═╝░░╚═╝╚══════╝░╚═════╝░
Build: 20240730
Try to build WEB files
npm install --silent
sh: 1: npm: not found
*** Error 127
npx gulp xzg
sh: 1: npx: not found
*** Error 127
Finish building WEB files
██╗░░██╗███████╗░██████╗░
╚██╗██╔╝╚════██║██╔════╝░
░╚███╔╝░░░███╔═╝██║░░██╗░
░██╔██╗░██╔══╝░░██║░░╚██╗
██╔╝╚██╗███████╗╚██████╔╝
╚═╝░░╚═╝╚══════╝░╚═════╝░
CONFIGURATION: https://docs.platformio.org/page/boards/espressif32/esp32-solo1.html
PLATFORM: Espressif 32 (2023.7.0) > Espressif Generic ESP32-solo1 4M Flash
HARDWARE: ESP32 160MHz, 320KB RAM, 4MB Flash
DEBUG: Current (cmsis-dap) External (cmsis-dap, esp-bridge, esp-prog, iot-bus-jtag, jlink, minimodule, olimex-arm-usb-ocd, olimex-arm-usb-ocd-h, olimex-arm-usb-tiny-h, olimex-jtag-tiny, tumpa)
PACKAGES:
LDF: Library Dependency Finder -> https://bit.ly/configure-pio-ldf
LDF Modes: Finder ~ chain, Compatibility ~ soft
Found 41 compatible libraries
Scanning dependencies...
Dependency Graph
|-- ArduinoJson @ 6.21.3
|-- CircularBuffer @ 1.4.0
|-- Ticker @ 4.4.0
|-- CronAlarms @ 0.1.0
|-- AsyncMqttClient @ 0.9.0
|-- AsyncTCP @ 1.1.1
|-- DallasTemperature @ 3.11.0
|-- HTTPClient @ 2.0.0
|-- FS @ 2.0.0
|-- LittleFS @ 2.0.0
|-- Preferences @ 2.0.0
|-- WiFi @ 2.0.0
|-- CCTools @ 0.0.6
|-- Ethernet @ 2.0.0
|-- OneWire @ 2.3.8
|-- WireGuard-ESP32 @ 0.1.5
|-- DNSServer @ 2.0.0
|-- ESPmDNS @ 2.0.0
|-- Update @ 2.0.0
|-- WebServer @ 2.0.0
|-- WiFiClientSecure @ 2.0.0
Building in release mode
Compiling .pio/build/prod-solo/src/config.cpp.o
Compiling .pio/build/prod-solo/src/const/hw.cpp.o
Compiling .pio/build/prod-solo/src/const/keys.cpp.o
Compiling .pio/build/prod-solo/src/etc.cpp.o
Compiling .pio/build/prod-solo/src/log.cpp.o
Compiling .pio/build/prod-solo/src/main.cpp.o
Compiling .pio/build/prod-solo/src/mqtt.cpp.o
Compiling .pio/build/prod-solo/src/per.cpp.o
Compiling .pio/build/prod-solo/src/web.cpp.o
src/web.cpp:23:10: fatal error: webh/html/PAGE_VPN.html.gz.h: No such file or directory
#include "webh/html/PAGE_VPN.html.gz.h"
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
*** [.pio/build/prod-solo/src/web.cpp.o] Error 1
============================================================================================================ [FAILED] Took 6.98 seconds ============================================================================================================
Environment Status Duration
prod-solo FAILED 00:00:06.975
======================================================================================================= 1 failed, 0 succeeded in 00:00:06.975 =======================================================================================================
The text was updated successfully, but these errors were encountered: