Merge branch 'dolphin-mpn' into master
48
.github/workflows/linux.yml
vendored
Normal file
|
@ -0,0 +1,48 @@
|
|||
# This is a basic workflow to help you get started with Actions
|
||||
|
||||
name: Linux CI
|
||||
|
||||
# Controls when the action will run. Triggers the workflow on push or pull request
|
||||
# events but only for the master branch
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||
jobs:
|
||||
# This workflow contains a single job called "build"
|
||||
build:
|
||||
# The type of runner that the job will run on
|
||||
runs-on: ubuntu-latest
|
||||
# Steps represent a sequence of tasks that will be executed as part of the job
|
||||
steps:
|
||||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||
- uses: actions/checkout@v2
|
||||
# Setup CMake
|
||||
- name: Setup CMake
|
||||
uses: Symbitic/install-cmake@v0.1.1
|
||||
with:
|
||||
platform: linux
|
||||
# Submoudle
|
||||
- name: Checkout Submodles
|
||||
run: git submodule update --init --recursive
|
||||
# Setup Packages
|
||||
- name: Setup Packages
|
||||
run: sudo apt update && sudo apt upgrade && sudo apt install curl ffmpeg git libao-dev libasound-dev libavcodec-dev libavformat-dev libbluetooth-dev libevdev-dev libgtk2.0-dev libhidapi-dev libmbedtls-dev libminiupnpc-dev libopenal-dev libpangocairo-1.0-0 libpulse-dev libsfml-dev libswscale-dev libudev-dev libusb-1.0-0-dev libxrandr-dev qt5-default qtbase5-private-dev
|
||||
# Run CMake
|
||||
- name: Run CMake
|
||||
run: mkdir build && cd build && cmake .. -G Ninja -DLINUX_LOCAL_DEV=true
|
||||
# Build Project
|
||||
- name: Run Make
|
||||
run: cd build && ninja -j4
|
||||
# Configure Dolphin
|
||||
- name: Configure Dolphin
|
||||
run: cd build && cp -r ../Data/Sys/ Binaries/ && cp -r ../Data/User/ Binaries/ && cp -r ../Data/dolphin-emu.png Binaries/ && touch Binaries/portable.txt
|
||||
# Upload Artifact
|
||||
- name: Upload Build Artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: DolphinMPN-Linux
|
||||
path: /home/runner/work/dolphin-mpn-advanced-src/dolphin-mpn-advanced-src/build/Binaries/
|
51
.github/workflows/macos.yml
vendored
Normal file
|
@ -0,0 +1,51 @@
|
|||
# This is a basic workflow to help you get started with Actions
|
||||
|
||||
name: macOS CI
|
||||
|
||||
# Controls when the action will run. Triggers the workflow on push or pull request
|
||||
# events but only for the master branch
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||
jobs:
|
||||
# This workflow contains a single job called "build"
|
||||
build:
|
||||
# The type of runner that the job will run on
|
||||
runs-on: macos-latest
|
||||
# Steps represent a sequence of tasks that will be executed as part of the job
|
||||
steps:
|
||||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||
- uses: actions/checkout@v2
|
||||
# Setup CMake
|
||||
- name: Setup CMake
|
||||
uses: Symbitic/install-cmake@v0.1.1
|
||||
with:
|
||||
platform: mac
|
||||
# Setup Packages
|
||||
- name: Setup Packages
|
||||
run: brew install qt5 pkgconfig
|
||||
# Use Static ZSTD
|
||||
- name: Remove ZSTD
|
||||
run: brew uninstall zstd curl php --force --ignore-dependencies
|
||||
# Submoudle
|
||||
- name: Checkout Submodles
|
||||
run: git submodule update --init --recursive
|
||||
# Run CMake
|
||||
- name: Run CMake
|
||||
run: mkdir -p build && cd build && cmake .. -G Ninja -DCMAKE_CXX_FLAGS="-Xclang -fcolor-diagnostics" -DCMAKE_PREFIX_PATH=$(brew --prefix qt5)
|
||||
# Build Project
|
||||
- name: Run Ninja
|
||||
run: cd build && ninja -j4
|
||||
# Configure Dolphin
|
||||
- name: Configure Dolphin
|
||||
run: cd build && cp -r ../Data/Sys/ Binaries/ && cp -r ../Data/User/ Binaries/ && cp -r ../Data/dolphin-emu.png Binaries/ && touch Binaries/portable.txt
|
||||
# Upload Artifact
|
||||
- name: Upload Build Artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: DolphinMPN-macOS
|
||||
path: /Users/runner/work/dolphin-mpn-advanced-src/dolphin-mpn-advanced-src/build/Binaries/
|
40
.github/workflows/windows.yml
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
# This is a basic workflow to help you get started with Actions
|
||||
|
||||
name: Windows CI
|
||||
|
||||
# Controls when the action will run. Triggers the workflow on push or pull request
|
||||
# events but only for the master branch
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||
jobs:
|
||||
# This workflow contains a single job called "build"
|
||||
build:
|
||||
# The type of runner that the job will run on
|
||||
runs-on: windows-2022
|
||||
|
||||
# Steps represent a sequence of tasks that will be executed as part of the job
|
||||
steps:
|
||||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||
- uses: actions/checkout@v2
|
||||
# Submoudle
|
||||
- name: Checkout Submodles
|
||||
run: git submodule update --init --recursive
|
||||
# Setup MSBuild For Later Usage
|
||||
- name: Setup MSBuild
|
||||
uses: microsoft/setup-msbuild@v1.0.2
|
||||
with:
|
||||
vs-version: '16.6.2'
|
||||
# Run MSBuild
|
||||
- name: Build Solution
|
||||
run: msbuild "D:\a\dolphin-mpn-advanced-src\dolphin-mpn-advanced-src\Source\dolphin-emu.sln" /verbosity:minimal /property:Configuration=Release /property:Platform=x64
|
||||
# Upload Artifact
|
||||
- name: Upload Build Artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: DolphinMPN-win32
|
||||
path: D:\a\dolphin-mpn-advanced-src\dolphin-mpn-advanced-src\Binary\x64
|
BIN
Data/Sys/Themes/Mario Party Netplay/classic.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
Data/Sys/Themes/Mario Party Netplay/config.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
Data/Sys/Themes/Mario Party Netplay/config@2x.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
Data/Sys/Themes/Mario Party Netplay/fullscreen.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
Data/Sys/Themes/Mario Party Netplay/fullscreen@2x.png
Normal file
After Width: | Height: | Size: 7.8 KiB |
BIN
Data/Sys/Themes/Mario Party Netplay/gradient.png
Normal file
After Width: | Height: | Size: 328 B |
BIN
Data/Sys/Themes/Mario Party Netplay/graphics.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
Data/Sys/Themes/Mario Party Netplay/graphics@2x.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
Data/Sys/Themes/Mario Party Netplay/open.png
Normal file
After Width: | Height: | Size: 675 B |
BIN
Data/Sys/Themes/Mario Party Netplay/open@2x.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
Data/Sys/Themes/Mario Party Netplay/pause.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
Data/Sys/Themes/Mario Party Netplay/pause@2x.png
Normal file
After Width: | Height: | Size: 7.3 KiB |
BIN
Data/Sys/Themes/Mario Party Netplay/play.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
Data/Sys/Themes/Mario Party Netplay/play@2x.png
Normal file
After Width: | Height: | Size: 7.6 KiB |
BIN
Data/Sys/Themes/Mario Party Netplay/refresh.png
Normal file
After Width: | Height: | Size: 2 KiB |
BIN
Data/Sys/Themes/Mario Party Netplay/refresh@2x.png
Normal file
After Width: | Height: | Size: 3.9 KiB |
BIN
Data/Sys/Themes/Mario Party Netplay/screenshot.png
Normal file
After Width: | Height: | Size: 2 KiB |
BIN
Data/Sys/Themes/Mario Party Netplay/screenshot@2x.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
Data/Sys/Themes/Mario Party Netplay/stop.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
Data/Sys/Themes/Mario Party Netplay/stop@2x.png
Normal file
After Width: | Height: | Size: 6.8 KiB |
BIN
Data/Sys/Themes/Mario Party Netplay/wifi.png
Normal file
After Width: | Height: | Size: 9.8 KiB |
BIN
Data/Sys/Themes/Mario Party Netplay/wifi@2x.png
Normal file
After Width: | Height: | Size: 17 KiB |