-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #258 from Cpasjuste/dev
v6.7
- Loading branch information
Showing
1,515 changed files
with
107,975 additions
and
420,643 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
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_LIGHT=ON -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 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
name: 3ds-release | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v*.*" | ||
|
||
jobs: | ||
|
||
build-3ds-release: | ||
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 -DCMAKE_BUILD_TYPE=Release .. | ||
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=Release .. | ||
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=Release .. | ||
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=Release .. | ||
#make -j $(getconf _NPROCESSORS_ONLN) psnes.3dsx | ||
|
||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: '*.3dsx' | ||
token: ${{ secrets.RELEASE_TOKEN }} |
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,6 @@ ss_dev_id.key | |
ss_dev_pwd.key | ||
ss_user_id.key | ||
ss_user_pwd.key | ||
|
||
# android | ||
keystore.properties |
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
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
Submodule genesis
updated
77 files
Submodule nestopia
updated
45 files
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.