cores: simplify code (wip) #47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 3ds-dev | |
on: | |
push: | |
branches: [ dev ] | |
workflow_dispatch: | |
jobs: | |
build-3ds-dev: | |
runs-on: ubuntu-20.04 | |
container: devkitpro/devkitarm:latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Install build dependencies | |
run: | | |
sudo apt -yq update | |
sudo apt -yq install git build-essential cmake zip | |
- name: Build pfbneo | |
run: | | |
mkdir cmake-build-pfbneo && cd cmake-build-pfbneo | |
source /etc/profile.d/devkit-env.sh | |
cmake -G "Unix Makefiles" -DPLATFORM_3DS=ON -DOPTION_EMU=pfbneo \ | |
-DOPTION_LIGHT=ON -DOPTION_MPV_PLAYER=OFF -DCMAKE_BUILD_TYPE=Debug .. | |
make pfbneo.deps | |
make -j $(getconf _NPROCESSORS_ONLN) pfbneo.3dsx | |
- name: Build pgen | |
run: | | |
mkdir cmake-build-pgen && cd cmake-build-pgen | |
source /etc/profile.d/devkit-env.sh | |
cmake -G "Unix Makefiles" -DPLATFORM_3DS=ON -DOPTION_EMU=pgen \ | |
-DOPTION_MPV_PLAYER=OFF -DCMAKE_BUILD_TYPE=Debug .. | |
make -j $(getconf _NPROCESSORS_ONLN) pgen.3dsx | |
- name: Build pnes | |
run: | | |
mkdir cmake-build-pnes && cd cmake-build-pnes | |
source /etc/profile.d/devkit-env.sh | |
cmake -G "Unix Makefiles" -DPLATFORM_3DS=ON -DOPTION_EMU=pnes \ | |
-DOPTION_MPV_PLAYER=OFF -DCMAKE_BUILD_TYPE=Debug .. | |
make -j $(getconf _NPROCESSORS_ONLN) pnes.3dsx | |
# too slow for 3ds for now... | |
#- name: Build psnes | |
#run: | | |
#mkdir cmake-build-psnes && cd cmake-build-psnes | |
#source /etc/profile.d/devkit-env.sh | |
#cmake -G "Unix Makefiles" -DPLATFORM_3DS=ON -DOPTION_MPV_PLAYER=OFF -DOPTION_EMU=psnes -DCMAKE_BUILD_TYPE=Debug .. | |
#make -j $(getconf _NPROCESSORS_ONLN) psnes.3dsx |