Skip to content

State state handling updates and optimizations #46

State state handling updates and optimizations

State state handling updates and optimizations #46

Workflow file for this run

name: EX Emulators
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
image: ["2600.emu", "C64.emu", "GBA.emu", "GBC.emu", "Lynx.emu", "MD.emu", "MSX.emu", "NEO.emu", "NES.emu", "NGP.emu", "PCE.emu", "Snes9x", "Swan.emu"]
steps:
- name: Checkout emu-ex-plus-alpha repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Decode debug keystore
env:
DEBUG_KEYSTORE: ${{ secrets.DEBUG_KEYSTORE }}
run: |
if [ -z "$DEBUG_KEYSTORE" ]
then
echo "No debug keystore value"
else
echo $DEBUG_KEYSTORE > debug.keystore.base64
base64 --decode debug.keystore.base64 > debug.keystore
sudo cp -f debug.keystore /root/.android/.
fi
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends autoconf automake autopoint bash binutils-arm-linux-gnueabi clang cmake file gawk gettext git libtool libtool-bin llvm make nasm pkg-config unzip wget
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Set up environment
run: |
mkdir imagine-sdk
mkdir EX-Emulators
wget "https://dl.google.com/android/repository/android-ndk-r26-beta1-linux.zip"
unzip android-ndk-r26-beta1-linux.zip
echo "ANDROID_NDK_PATH=${{ github.workspace }}/android-ndk-r26-beta1" >> $GITHUB_ENV
echo "EMUFRAMEWORK_PATH=${{ github.workspace }}/EmuFramework" >> $GITHUB_ENV
echo "IMAGINE_PATH=${{ github.workspace }}/imagine" >> $GITHUB_ENV
echo "IMAGINE_SDK_PATH=${{ github.workspace }}/imagine-sdk" >> $GITHUB_ENV
- name: Run script
run: |
cd imagine/bundle/all
chmod +x ./makeAll-android.sh
./makeAll-android.sh install
shell: bash
- name: Build environment
run: |
make -f $IMAGINE_PATH/android-release.mk install V=1 -j2
make -f $EMUFRAMEWORK_PATH/android-release.mk config -j2
make -f $EMUFRAMEWORK_PATH/android-release.mk install V=1 -j2
- name: Build 2600.emu
if: ${{ matrix.image == '2600.emu' }}
run: |
cd 2600.emu
make -f android-release.mk android-apk V=1 -j2
- name: Copy 2600.emu artifact
if: ${{ matrix.image == '2600.emu' }}
run: |
cp 2600.emu/target/android-release/build/outputs/apk/release/2600Emu-release.apk EX-Emulators/2600Emu-release.apk
- name: Upload 2600.emu artifact
uses: actions/upload-artifact@v3
if: ${{ matrix.image == '2600.emu' }}
with:
name: 2600emu
path: ${{ github.workspace }}/2600.emu/target/android-release/build/outputs/apk/release/2600Emu-release.apk
- name: Build C64.emu
if: ${{ matrix.image == 'C64.emu' }}
run: |
cd C64.emu
make -f android-release.mk android-apk V=1 -j2
- name: Copy C64.emu artifact
if: ${{ matrix.image == 'C64.emu' }}
run: |
cp C64.emu/target/android-release/build/outputs/apk/release/C64Emu-release.apk EX-Emulators/C64Emu-release.apk
- name: Upload C64.emu artifact
uses: actions/upload-artifact@v3
if: ${{ matrix.image == 'C64.emu' }}
with:
name: C64emu
path: ${{ github.workspace }}/C64.emu/target/android-release/build/outputs/apk/release/C64Emu-release.apk
- name: Build GBA.emu
if: ${{ matrix.image == 'GBA.emu' }}
run: |
cd GBA.emu
make -f android-release.mk android-apk V=1 -j2
- name: Copy GBA.emu artifact
if: ${{ matrix.image == 'GBA.emu' }}
run: |
cp GBA.emu/target/android-release/build/outputs/apk/release/GbaEmu-release.apk EX-Emulators/GbaEmu-release.apk
- name: Upload GBA.emu artifact
uses: actions/upload-artifact@v3
if: ${{ matrix.image == 'GBA.emu' }}
with:
name: GBAemu
path: ${{ github.workspace }}/GBA.emu/target/android-release/build/outputs/apk/release/GbaEmu-release.apk
- name: Build GBC.emu
if: ${{ matrix.image == 'GBC.emu' }}
run: |
cd GBC.emu
make -f android-release.mk android-apk V=1 -j2
- name: Copy GBC.emu artifact
if: ${{ matrix.image == 'GBC.emu' }}
run: |
cp GBC.emu/target/android-release/build/outputs/apk/release/GbcEmu-release.apk EX-Emulators/GbcEmu-release.apk
- name: Upload GBC.emu artifact
uses: actions/upload-artifact@v3
if: ${{ matrix.image == 'GBC.emu' }}
with:
name: GBCemu
path: ${{ github.workspace }}/GBC.emu/target/android-release/build/outputs/apk/release/GbcEmu-release.apk
- name: Build Lynx.emu
if: ${{ matrix.image == 'Lynx.emu' }}
run: |
cd Lynx.emu
make -f android-release.mk android-apk V=1 -j2
- name: Copy Lynx.emu artifact
if: ${{ matrix.image == 'Lynx.emu' }}
run: |
cp Lynx.emu/target/android-release/build/outputs/apk/release/LynxEmu-release.apk EX-Emulators/LynxEmu-release.apk
- name: Upload Lynx.emu artifact
uses: actions/upload-artifact@v3
if: ${{ matrix.image == 'Lynx.emu' }}
with:
name: Lynxemu
path: ${{ github.workspace }}/Lynx.emu/target/android-release/build/outputs/apk/release/LynxEmu-release.apk
- name: Build MD.emu
if: ${{ matrix.image == 'MD.emu' }}
run: |
cd MD.emu
make -f android-release.mk android-apk V=1 -j2
- name: Copy MD.emu artifact
if: ${{ matrix.image == 'MD.emu' }}
run: |
cp MD.emu/target/android-release/build/outputs/apk/release/MdEmu-release.apk EX-Emulators/MdEmu-release.apk
- name: Upload MD.emu artifact
uses: actions/upload-artifact@v3
if: ${{ matrix.image == 'MD.emu' }}
with:
name: MDemu
path: ${{ github.workspace }}/MD.emu/target/android-release/build/outputs/apk/release/MdEmu-release.apk
- name: Build MSX.emu
if: ${{ matrix.image == 'MSX.emu' }}
run: |
cd MSX.emu
make -f android-release.mk android-apk V=1 -j2
- name: Copy MSX.emu artifact
if: ${{ matrix.image == 'MSX.emu' }}
run: |
cp MSX.emu/target/android-release/build/outputs/apk/release/MsxEmu-release.apk EX-Emulators/MsxEmu-release.apk
- name: Upload MSX.emu artifact
uses: actions/upload-artifact@v3
if: ${{ matrix.image == 'MSX.emu' }}
with:
name: MSXemu
path: ${{ github.workspace }}/MSX.emu/target/android-release/build/outputs/apk/release/MsxEmu-release.apk
- name: Build NEO.emu
if: ${{ matrix.image == 'NEO.emu' }}
run: |
cd NEO.emu
make -f android-release.mk android-apk V=1 -j2
- name: Copy NEO.emu artifact
if: ${{ matrix.image == 'NEO.emu' }}
run: |
cp NEO.emu/target/android-release/build/outputs/apk/release/NeoEmu-release.apk EX-Emulators/NeoEmu-release.apk
- name: Upload NEO.emu artifact
uses: actions/upload-artifact@v3
if: ${{ matrix.image == 'NEO.emu' }}
with:
name: NEOemu
path: ${{ github.workspace }}/NEO.emu/target/android-release/build/outputs/apk/release/NeoEmu-release.apk
- name: Build NES.emu
if: ${{ matrix.image == 'NES.emu' }}
run: |
cd NES.emu
make -f android-release.mk android-apk V=1 -j2
- name: Copy NES.emu artifact
if: ${{ matrix.image == 'NES.emu' }}
run: |
cp NES.emu/target/android-release/build/outputs/apk/release/NesEmu-release.apk EX-Emulators/NesEmu-release.apk
- name: Upload NES.emu artifact
uses: actions/upload-artifact@v3
if: ${{ matrix.image == 'NES.emu' }}
with:
name: NESemu
path: ${{ github.workspace }}/NES.emu/target/android-release/build/outputs/apk/release/NesEmu-release.apk
- name: Build NGP.emu
if: ${{ matrix.image == 'NGP.emu' }}
run: |
cd NGP.emu
make -f android-release.mk android-apk V=1 -j2
- name: Copy NGP.emu artifact
if: ${{ matrix.image == 'NGP.emu' }}
run: |
cp NGP.emu/target/android-release/build/outputs/apk/release/NgpEmu-release.apk EX-Emulators/NgpEmu-release.apk
- name: Upload NGP.emu artifact
uses: actions/upload-artifact@v3
if: ${{ matrix.image == 'NGP.emu' }}
with:
name: NGPemu
path: ${{ github.workspace }}/NGP.emu/target/android-release/build/outputs/apk/release/NgpEmu-release.apk
- name: Build PCE.emu
if: ${{ matrix.image == 'PCE.emu' }}
run: |
cd PCE.emu
make -f android-release.mk android-apk V=1 -j2
- name: Copy PCE.emu artifact
if: ${{ matrix.image == 'PCE.emu' }}
run: |
cp PCE.emu/target/android-release/build/outputs/apk/release/PceEmu-release.apk EX-Emulators/PceEmu-release.apk
- name: Upload PCE.emu artifact
uses: actions/upload-artifact@v3
if: ${{ matrix.image == 'PCE.emu' }}
with:
name: PCEemu
path: ${{ github.workspace }}/PCE.emu/target/android-release/build/outputs/apk/release/PceEmu-release.apk
- name: Build Snes9x
if: ${{ matrix.image == 'Snes9x' }}
run: |
cd Snes9x
make -f android-release.mk android-apk V=1 -j2
- name: Copy Snes9x artifact
if: ${{ matrix.image == 'Snes9x' }}
run: |
cp Snes9x/target/android-release/build/outputs/apk/release/Snes9xEXPlus-release.apk EX-Emulators/Snes9xEXPlus-release.apk
- name: Upload Snes9x artifact
uses: actions/upload-artifact@v3
if: ${{ matrix.image == 'Snes9x' }}
with:
name: Snes9x
path: ${{ github.workspace }}/Snes9x/target/android-release/build/outputs/apk/release/Snes9xEXPlus-release.apk
- name: Build Swan.emu
if: ${{ matrix.image == 'Swan.emu' }}
run: |
cd Swan.emu
make -f android-release.mk android-apk V=1 -j2
- name: Copy Swan.emu artifact
if: ${{ matrix.image == 'Swan.emu' }}
run: |
cp Swan.emu/target/android-release/build/outputs/apk/release/SwanEmu-release.apk EX-Emulators/SwanEmu-release.apk
- name: Upload Swan.emu artifact
uses: actions/upload-artifact@v3
if: ${{ matrix.image == 'Swan.emu' }}
with:
name: Swanemu
path: ${{ github.workspace }}/Swan.emu/target/android-release/build/outputs/apk/release/SwanEmu-release.apk
- name: Upload EX-Emulators artifacts
uses: actions/upload-artifact@v3
with:
name: EX-Emulators
path: EX-Emulators/
release:
name: Release
runs-on: ubuntu-latest
needs: [build]
if: github.ref == 'refs/heads/master'
steps:
- name: Checkout emu-ex-plus-alpha repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Download Artifacts
uses: actions/download-artifact@v3
with:
path: dist
- name: Re-zip artifacts
run: |
cd dist
for artifact in *
do
echo "-> Creating ${artifact}.zip"
pushd "$artifact"
zip -r "../${artifact}.zip" *
popd
done
- name: Update Git Tag
run: |
git tag -f Pre-release
git push -f origin Pre-release
- name: Create Release
uses: ncipollo/release-action@v1
with:
prerelease: true
allowUpdates: true
removeArtifacts: true
replacesArtifacts: false
tag: Pre-release
artifacts: "dist/*.zip"