Skip to content

Commit f019e34

Browse files
arkqaustina-csa
authored andcommitted
Build ESP32 QEMU from correct ESP branch (project-chip#34109)
1 parent c9763dd commit f019e34

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
61 : Update env variable in vscode image
1+
62 : Fix ESP32 qemu build

integrations/docker/images/stage-3/chip-build-esp32-qemu/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN set -x \
1313
WORKDIR /opt/espressif/qemu
1414
# Setup QEMU emulator for ESP32 platform
1515
RUN set -x \
16-
&& git clone --depth 1 -b v9.0.0 https://github.com/espressif/qemu.git ../qemu-src \
16+
&& git clone --depth 1 -b esp-develop-9.0.0-20240606 https://github.com/espressif/qemu.git ../qemu-src \
1717
&& ../qemu-src/configure --target-list=xtensa-softmmu --enable-debug --disable-strip --disable-user --disable-capstone --disable-vnc --disable-sdl --disable-gtk \
1818
&& make -j$(nproc) \
1919
&& : # last line

src/test_driver/esp32/run_qemu_image.py

+1
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ def main(log_level, no_log_timestamps, image, file_image_list, qemu, verbose):
150150
# make sure output is visible in stdout
151151
print("========== TEST OUTPUT BEGIN ============")
152152
print(output)
153+
print(status.stderr.decode('ascii'))
153154
print("========== TEST OUTPUT END ============")
154155
raise
155156

0 commit comments

Comments
 (0)