aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authordatdenkikniet <jcdra1@gmail.com>2025-03-22 22:44:32 +0100
committerdatdenkikniet <38322042+datdenkikniet@users.noreply.github.com>2025-03-23 09:57:48 +0000
commit5aa479b23eba7a21b5f65d928ead9383579cc0b9 (patch)
tree49a346179e45487f8ff7c71e8cd8fc96efa2a124 /.github
parentcfcf21ffe47532083bda4d3d4b12bb6aa725da8a (diff)
ci: fix QEMU tests for esp32
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 68867d0..3187ea1 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -326,8 +326,13 @@ jobs:
name: qemu
- name: Extract QEMU into local path
+ if: ${{ matrix.input.platform != 'esp32-c3' }}
run: tar -xf qemu.tar -C /usr/local/bin
+ - name: Extract ESP32 QEMU into local path
+ if: ${{ matrix.input.platform == 'esp32-c3' }}
+ run: sudo tar --strip-components=1 -xf qemu.tar -C /usr/local/ esp32/
+
- name: Check which QEMU is used
run: |
which qemu-system-${{ matrix.input.qemu-system }}