From 877d9458706bf0d4ee139ad41c586640911a0447 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= Date: Mon, 24 Aug 2020 11:57:53 +0000 Subject: [PATCH] Try system QEMU --- .github/workflows/build.yml | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e19fda4b7f..0ec72bb1cb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -143,15 +143,6 @@ jobs: restore-keys: | ${{ runner.OS }}-rust-${{ env.rustc_hash }} - - name: Cache QEMU binary - id: cache-qemu-binary - uses: actions/cache@v2 - with: - path: qemu - key: ${{ runner.OS }}-qemu - restore-keys: | - ${{ runner.OS }}-qemu - - name: Install Rust ${{ matrix.toolchain }} with target (${{ matrix.target }}) uses: actions-rs/toolchain@v1 with: @@ -181,16 +172,9 @@ jobs: use-tool-cache: true - name: Install QEMU - if: steps.cache-qemu-binary.outputs.cache-hit != 'true' run: | - mkdir -p qemu - curl -C - -L https://github.com/japaric/qemu-bin/raw/master/14.04/qemu-system-arm-2.12.0 > qemu/qemu-system-arm - chmod +x qemu/qemu-system-arm - - - name: Setup add QEMU to PATH - env: - GITHUB_WORKSPACE: ${{ github.workspace }} - run: echo "::add-path::${GITHUB_WORKSPACE}/qemu" + sudo apt update + sudo apt install -y qemu-system-arm - name: Run-pass tests run: |