From c692a58a11cab288c3a14e4c21ab7783df1d891d Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 5 Jul 2023 06:40:57 -0700 Subject: [PATCH] Disable the qemu cache. --- .github/workflows/main.yml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f0f211c5f..0ef35ca81 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -511,11 +511,6 @@ jobs: upcase=$(echo ${{ matrix.target }} | awk '{ print toupper($0) }' | sed 's/-/_/g') echo CARGO_TARGET_${upcase}_RUNNER=${{ runner.tool_cache }}/qemu/bin/${{ matrix.qemu }} ${{ matrix.qemu_args }} >> $GITHUB_ENV - # See if qemu is already in the cache - if [ -f ${{ runner.tool_cache }}/qemu/bin/${{ matrix.qemu }} ]; then - exit 0 - fi - # Download and build qemu from source since the most recent release is # way faster at arm emulation than the current version github actions' # ubuntu image uses. Disable as much as we can to get it to build @@ -693,11 +688,6 @@ jobs: upcase=$(echo ${{ matrix.target }} | awk '{ print toupper($0) }' | sed 's/-/_/g') echo CARGO_TARGET_${upcase}_RUNNER=${{ runner.tool_cache }}/qemu/bin/${{ matrix.qemu }} ${{ matrix.qemu_args }} >> $GITHUB_ENV - # See if qemu is already in the cache - if [ -f ${{ runner.tool_cache }}/qemu/bin/${{ matrix.qemu }} ]; then - exit 0 - fi - # Download and build qemu from source since the most recent release is # way faster at arm emulation than the current version github actions' # ubuntu image uses. Disable as much as we can to get it to build @@ -802,11 +792,6 @@ jobs: upcase=$(echo ${{ matrix.target }} | awk '{ print toupper($0) }' | sed 's/-/_/g') echo CARGO_TARGET_${upcase}_RUNNER=${{ runner.tool_cache }}/qemu/bin/${{ matrix.qemu }} ${{ matrix.qemu_args }} >> $GITHUB_ENV - # See if qemu is already in the cache - if [ -f ${{ runner.tool_cache }}/qemu/bin/${{ matrix.qemu }} ]; then - exit 0 - fi - # Download and build qemu from source since the most recent release is # way faster at arm emulation than the current version github actions' # ubuntu image uses. Disable as much as we can to get it to build