mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 00:31:34 +11:00
use later version of mgba
This commit is contained in:
parent
7ad429c56b
commit
2c32e11882
10
.github/workflows/rust.yml
vendored
10
.github/workflows/rust.yml
vendored
|
@ -11,10 +11,16 @@ env:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- name: Install build tools
|
- 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
|
- uses: actions/checkout@v2
|
||||||
- name: Nightly rust with required components
|
- name: Nightly rust with required components
|
||||||
uses: actions-rs/toolchain@v1
|
uses: actions-rs/toolchain@v1
|
||||||
|
|
Loading…
Reference in a new issue