Skip to content

Commit

Permalink
version: netplay to 2.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
JLaferri committed Dec 21, 2021
1 parent acdecbe commit 6b4e043
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ jobs:
steps:
- name: "Checkout"
uses: actions/checkout@v2
- name: "Setup Go"
uses: actions/setup-go@v2
if: matrix.build_type == 'Netplay'
- name: "Remove Redistributable"
shell: cmd
run: |
Expand Down Expand Up @@ -82,6 +85,17 @@ jobs:
shell: cmd
run: |
msbuild /p:Configuration=${{ matrix.build_config }} /p:Platform=x64 ${{ github.workspace }}\Source\Dolphin.sln
- name: "Build Netplay Updater"
working-directory: ${{ github.workspace }}
shell: cmd
if: matrix.build_type == 'Netplay'
run: |
cd %GOPATH%
git clone https://github.com/project-slippi/dolphin-slippi-tools
cd dolphin-slippi-tools
go get github.com/gonutz/w32 github.com/machinebox/graphql golang.org/x/sys/windows/registry
go build
copy /b /v /y dolphin-slippi-tools.exe ${{ github.workspace }}\Binary\x64\
- name: "Prepare Artifact"
working-directory: ${{ github.workspace }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/Common/Version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
//" " BUILD_TYPE_STR " " SCM_DESC_STR;
//#endif
#ifndef IS_PLAYBACK
#define SLIPPI_REV_STR "2.3.2" // netplay version
#define SLIPPI_REV_STR "2.3.3" // netplay version
#else
#define SLIPPI_REV_STR "2.3.7" // playback version
#endif
Expand Down

0 comments on commit 6b4e043

Please sign in to comment.