@@ -511,11 +511,6 @@ jobs:
511
511
upcase=$(echo ${{ matrix.target }} | awk '{ print toupper($0) }' | sed 's/-/_/g')
512
512
echo CARGO_TARGET_${upcase}_RUNNER=${{ runner.tool_cache }}/qemu/bin/${{ matrix.qemu }} ${{ matrix.qemu_args }} >> $GITHUB_ENV
513
513
514
- # See if qemu is already in the cache
515
- if [ -f ${{ runner.tool_cache }}/qemu/bin/${{ matrix.qemu }} ]; then
516
- exit 0
517
- fi
518
-
519
514
# Download and build qemu from source since the most recent release is
520
515
# way faster at arm emulation than the current version github actions'
521
516
# ubuntu image uses. Disable as much as we can to get it to build
@@ -693,11 +688,6 @@ jobs:
693
688
upcase=$(echo ${{ matrix.target }} | awk '{ print toupper($0) }' | sed 's/-/_/g')
694
689
echo CARGO_TARGET_${upcase}_RUNNER=${{ runner.tool_cache }}/qemu/bin/${{ matrix.qemu }} ${{ matrix.qemu_args }} >> $GITHUB_ENV
695
690
696
- # See if qemu is already in the cache
697
- if [ -f ${{ runner.tool_cache }}/qemu/bin/${{ matrix.qemu }} ]; then
698
- exit 0
699
- fi
700
-
701
691
# Download and build qemu from source since the most recent release is
702
692
# way faster at arm emulation than the current version github actions'
703
693
# ubuntu image uses. Disable as much as we can to get it to build
@@ -802,11 +792,6 @@ jobs:
802
792
upcase=$(echo ${{ matrix.target }} | awk '{ print toupper($0) }' | sed 's/-/_/g')
803
793
echo CARGO_TARGET_${upcase}_RUNNER=${{ runner.tool_cache }}/qemu/bin/${{ matrix.qemu }} ${{ matrix.qemu_args }} >> $GITHUB_ENV
804
794
805
- # See if qemu is already in the cache
806
- if [ -f ${{ runner.tool_cache }}/qemu/bin/${{ matrix.qemu }} ]; then
807
- exit 0
808
- fi
809
-
810
795
# Download and build qemu from source since the most recent release is
811
796
# way faster at arm emulation than the current version github actions'
812
797
# ubuntu image uses. Disable as much as we can to get it to build
0 commit comments