mirror of
https://github.com/italicsjenga/agb.git
synced 2025-01-11 17:41:33 +11:00
commit
ce8ec52170
|
@ -13,8 +13,6 @@ jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- name: Set CARGO_TARGET_DIR
|
|
||||||
run: echo "CARGO_TARGET_DIR=$HOME/target" >> $GITHUB_ENV
|
|
||||||
- name: Install build tools
|
- name: Install build tools
|
||||||
run: sudo apt-get update && sudo apt-get install build-essential binutils-arm-none-eabi libelf-dev zip -y
|
run: sudo apt-get update && sudo apt-get install build-essential binutils-arm-none-eabi libelf-dev zip -y
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
@ -25,10 +23,13 @@ jobs:
|
||||||
~/.cargo/registry
|
~/.cargo/registry
|
||||||
~/.cargo/git
|
~/.cargo/git
|
||||||
~/target
|
~/target
|
||||||
|
mgba-test-runner/target
|
||||||
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
||||||
|
|
||||||
- name: install mgba-test-runner
|
- name: install mgba-test-runner
|
||||||
run: cargo install --path mgba-test-runner --verbose
|
run: cargo install --path mgba-test-runner --verbose
|
||||||
|
- name: Set CARGO_TARGET_DIR
|
||||||
|
run: echo "CARGO_TARGET_DIR=$HOME/target" >> $GITHUB_ENV
|
||||||
- name: Install gbafix
|
- name: Install gbafix
|
||||||
run: cargo install gbafix
|
run: cargo install gbafix
|
||||||
- name: Build and test all crates
|
- name: Build and test all crates
|
|
@ -5,6 +5,11 @@ OUT_DIRECTORY=$2
|
||||||
CURRENT_DIRECTORY=$(pwd)
|
CURRENT_DIRECTORY=$(pwd)
|
||||||
|
|
||||||
cd ${OUT_DIRECTORY}
|
cd ${OUT_DIRECTORY}
|
||||||
|
|
||||||
|
if [[ -f libmgba-cycle.a ]]; then
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
curl -L https://github.com/mgba-emu/mgba/archive/refs/tags/${MGBA_VERSION}.tar.gz -o mgba-${MGBA_VERSION}.tar.gz
|
curl -L https://github.com/mgba-emu/mgba/archive/refs/tags/${MGBA_VERSION}.tar.gz -o mgba-${MGBA_VERSION}.tar.gz
|
||||||
tar -xvf mgba-${MGBA_VERSION}.tar.gz
|
tar -xvf mgba-${MGBA_VERSION}.tar.gz
|
||||||
cd mgba-${MGBA_VERSION}
|
cd mgba-${MGBA_VERSION}
|
||||||
|
|
Loading…
Reference in a new issue