diff --git a/.github/workflows/actions/setup-qemu/action.yml b/.github/workflows/actions/setup-qemu/action.yml index 96c3f3bf32..e5e7ffb915 100644 --- a/.github/workflows/actions/setup-qemu/action.yml +++ b/.github/workflows/actions/setup-qemu/action.yml @@ -17,7 +17,7 @@ runs: key: qemu-${{ inputs.qemu-version }} - name: Download and build QEMU - if: steps.cache-qemu.outputs.cache-hit != 'true' + #if: steps.cache-qemu.outputs.cache-hit != 'true' env: QEMU_PATH: qemu-${{ inputs.qemu-version }} PREFIX: ${{ github.workspace }}/qemu_build @@ -31,7 +31,7 @@ runs: && make install - name: Download and build QEMU for loongarch - if: steps.cache-qemu.outputs.cache-hit != 'true' + #if: steps.cache-qemu.outputs.cache-hit != 'true' env: QEMU_PATH: qemu-${{ inputs.qemu-version }} PREFIX: ${{ github.workspace }}/qemu_build @@ -44,7 +44,7 @@ runs: make install - uses: actions/cache/save@v3 - if: steps.cache-qemu.outputs.cache-hit != 'true' + #if: steps.cache-qemu.outputs.cache-hit != 'true' with: path: qemu_build key: qemu-${{ inputs.qemu-version }}