diff options
| author | Henrik Tjäder <henrik@tjaders.com> | 2025-06-15 14:27:39 +0200 |
|---|---|---|
| committer | Emil Fresk <emil.fresk@gmail.com> | 2025-06-15 15:43:12 +0000 |
| commit | 3678a404b3c615322ad6bbfd532ce15b51e26cff (patch) | |
| tree | 6b93eebb7716b9ef269bec806948007bcd6379f6 /.github/workflows/build.yml | |
| parent | 659d35a8e7b79add1d8b00bf12dfb9830dbf773f (diff) | |
ci: QEMU: Custom QEMU only for ESP32
Diffstat (limited to '.github/workflows/build.yml')
| -rw-r--r-- | .github/workflows/build.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ed95c4a..969450d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -178,12 +178,13 @@ jobs: - name: Cache Dependencies uses: Swatinem/rust-cache@v2 - - name: Install QEMU to get dependencies + - name: Install QEMU run: | sudo apt update sudo apt install -y qemu-system-${{ matrix.input.qemu-system }} - name: Download built QEMU + if: contains(matrix.input.platform, 'esp32') uses: actions/download-artifact@v4 with: name: qemu |
