Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Notify mupen core of client input delay. #70

Closed
wants to merge 22 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Build project

on: [push, pull_request]

jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Checkout core repo
uses: actions/checkout@v2
with:
repository: mupen64plus/mupen64plus-core
path: core
- name: Update and install packages
run: |
sudo apt-get -qq update
sudo apt-get -y install build-essential qt5-default libqt5websockets5-dev libsdl2-dev
- name: Run build script
run: |
echo "#define GUI_VERSION \"a12345\"" > version.h
mkdir build
cd build
qmake ..
make
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Checkout core repo
uses: actions/checkout@v2
with:
repository: mupen64plus/mupen64plus-core
path: core
- uses: msys2/setup-msys2@v2
with:
update: true
install: >-
make
mingw-w64-x86_64-SDL2
mingw-w64-x86_64-qt5
mingw-w64-x86_64-gcc
- name: Run build script
run: |
echo '#define GUI_VERSION "a12345"' > version.h
mkdir build
cd build
msys2 -c 'qmake ..'
msys2 -c 'make'
Binary file added discord/discord_game_sdk.dll
Binary file not shown.
Binary file added discord/discord_game_sdk.dylib
Binary file not shown.
Loading