From 2c32e118825b7e3f7546e063ed412ae553a195eb Mon Sep 17 00:00:00 2001 From: Corwin Kuiper Date: Sun, 11 Apr 2021 01:25:48 +0100 Subject: [PATCH] use later version of mgba --- .github/workflows/rust.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 6869e8db..875d2dc7 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -11,10 +11,16 @@ env: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Install build tools - run: sudo apt-get update && sudo apt-get install xvfb build-essential binutils-arm-none-eabi mgba-qt pulseaudio -y + run: sudo apt-get update && sudo apt-get install xvfb build-essential binutils-arm-none-eabi pulseaudio -y + - name: Install mgba 0.9 + run: | + curl -L https://github.com/mgba-emu/mgba/releases/download/0.9.0/mGBA-0.9.0-ubuntu64-focal.tar.xz -o mgba.tar.xz && \ + tar -xf mgba.tar.xz && \ + sudo apt-get install ./mGBA-0.9.0-ubuntu64-focal/* -y && \ + rm -rf mgba.tar.xz mGBA-0.9.0-ubuntu64-focal - uses: actions/checkout@v2 - name: Nightly rust with required components uses: actions-rs/toolchain@v1