Skip to content

Commit

Permalink
Build ESP32 QEMU from correct ESP branch (#34109)
Browse files Browse the repository at this point in the history
  • Loading branch information
arkq authored and pull[bot] committed Dec 24, 2024
1 parent 25a8f59 commit 9250435
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion integrations/docker/images/base/chip-build/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
61 : Update env variable in vscode image
62 : Fix ESP32 qemu build
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN set -x \
WORKDIR /opt/espressif/qemu
# Setup QEMU emulator for ESP32 platform
RUN set -x \
&& git clone --depth 1 -b v9.0.0 https://github.com/espressif/qemu.git ../qemu-src \
&& git clone --depth 1 -b esp-develop-9.0.0-20240606 https://github.com/espressif/qemu.git ../qemu-src \
&& ../qemu-src/configure --target-list=xtensa-softmmu --enable-debug --disable-strip --disable-user --disable-capstone --disable-vnc --disable-sdl --disable-gtk \
&& make -j$(nproc) \
&& : # last line
Expand Down
1 change: 1 addition & 0 deletions src/test_driver/esp32/run_qemu_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ def main(log_level, no_log_timestamps, image, file_image_list, qemu, verbose):
# make sure output is visible in stdout
print("========== TEST OUTPUT BEGIN ============")
print(output)
print(status.stderr.decode('ascii'))
print("========== TEST OUTPUT END ============")
raise

Expand Down

0 comments on commit 9250435

Please sign in to comment.