From 6b4e043762f5abbaf7bda70b1acb378b1588f9f5 Mon Sep 17 00:00:00 2001 From: Jas Laferriere Date: Tue, 21 Dec 2021 14:51:08 -0500 Subject: [PATCH] version: netplay to 2.3.3 --- .github/workflows/pr-build.yml | 14 ++++++++++++++ Source/Core/Common/Version.cpp | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml index 79dcfb27f3..ae81efa1a1 100644 --- a/.github/workflows/pr-build.yml +++ b/.github/workflows/pr-build.yml @@ -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: | @@ -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: | diff --git a/Source/Core/Common/Version.cpp b/Source/Core/Common/Version.cpp index 886a35262c..967a8a9f2c 100644 --- a/Source/Core/Common/Version.cpp +++ b/Source/Core/Common/Version.cpp @@ -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