Create the destination qemu directory, as needed

This commit is contained in:
Thorsten Sommer 2024-06-10 22:03:59 +02:00
parent 70dabf9bc8
commit b626720eb0
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -281,6 +281,7 @@ jobs:
- name: Add the built runner image to the cache - name: Add the built runner image to the cache
if: steps.linux_arm_cache.outputs.cache-hit != 'true' if: steps.linux_arm_cache.outputs.cache-hit != 'true'
run: | run: |
mkdir -p qemu
mv ${{ steps.build-linux-arm-runner.outputs.image }} qemu/linux_arm_qemu_cache.img mv ${{ steps.build-linux-arm-runner.outputs.image }} qemu/linux_arm_qemu_cache.img
- name: Compiling the Rust runtime - name: Compiling the Rust runtime
@ -313,6 +314,7 @@ jobs:
- name: Update the runner image to cache the Rust runtime build - name: Update the runner image to cache the Rust runtime build
run: | run: |
mkdir -p qemu
mv ${{ steps.build-linux-arm.outputs.image }} qemu/linux_arm_qemu_cache.img mv ${{ steps.build-linux-arm.outputs.image }} qemu/linux_arm_qemu_cache.img
- name: Upload artifact (Linux - Debian Package) - name: Upload artifact (Linux - Debian Package)