-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
10fe3da
commit 4567b35
Showing
275 changed files
with
83,048 additions
and
15 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,56 @@ | ||
name: Basic test push | ||
|
||
on: push | ||
|
||
jobs: | ||
build: | ||
env: | ||
SOLUTION_FILE_PATH: archipelago-client | ||
BUILD_PLATFORM: "x64" | ||
BUILD_CONFIGURATION: Release | ||
OPENSSL_SOLUTION_FILE_PATH: openssl1_1-lite.sln | ||
OPENSSL_BUILD_PLATFORM: Win64 | ||
ARCH: win64 | ||
runs-on: windows-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
|
||
- uses: ilammy/setup-nasm@v1 | ||
|
||
- uses: ilammy/msvc-dev-cmd@v1 | ||
with: | ||
arch: ${{env.ARCH}} | ||
|
||
- uses: shogo82148/actions-setup-perl@v1 | ||
|
||
- name: Build OpenSSL | ||
run: | | ||
cd archipelago-client | ||
cd dep | ||
git clone -b OpenSSL_1_1_1-stable --depth 1 https://github.com/openssl/openssl.git | ||
cd openssl | ||
md x64 | ||
cd x64 | ||
perl ..\Configure VC-WIN64A no-shared | ||
nmake /S | ||
|
||
- name: Zip OpenSSL | ||
run: Compress-Archive -Path ${{env.SOLUTION_FILE_PATH}}\dep\openssl\* -Destination ${{env.SOLUTION_FILE_PATH}}\openSSL.zip | ||
|
||
- name: Store OpenSSL | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: openSSL | ||
path: ${{env.SOLUTION_FILE_PATH}}\openSSL.zip | ||
|
||
- name: Add MSBuild to PATH | ||
uses: microsoft/setup-msbuild@v1 | ||
|
||
- name: Build Project | ||
run: | | ||
msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} /p:Platform=${{env.BUILD_PLATFORM}} | ||
|
||
|
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 |
---|---|---|
@@ -1,18 +1,19 @@ | ||
[submodule "archipelago-client/subprojects/minhook"] | ||
path = archipelago-client/subprojects/minhook | ||
url = https://github.com/TsudaKageyu/minhook.git | ||
[submodule "archipelago-client/subprojects/valijson"] | ||
path = archipelago-client/subprojects/valijson | ||
url = https://github.com/tristanpenman/valijson.git | ||
|
||
[submodule "archipelago-client/subprojects/asio"] | ||
path = archipelago-client/subprojects/asio | ||
url = https://github.com/chriskohlhoff/asio.git | ||
|
||
[submodule "archipelago-client/subprojects/wswrap"] | ||
path = archipelago-client/subprojects/wswrap | ||
url = https://github.com/black-sliver/wswrap.git | ||
|
||
[submodule "archipelago-client/subprojects/websocketpp"] | ||
path = archipelago-client/subprojects/websocketpp | ||
url = https://github.com/zaphoyd/websocketpp.git | ||
[submodule "archipelago-client/subprojects/asio"] | ||
path = archipelago-client/subprojects/asio | ||
url = https://github.com/chriskohlhoff/asio.git | ||
|
||
[submodule "archipelago-client/subprojects/apclientpp"] | ||
path = archipelago-client/subprojects/apclientpp | ||
url = https://github.com/black-sliver/apclientpp.git |
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 |
---|---|---|
@@ -0,0 +1,60 @@ | ||
// Script de ressources g�n�r� par Microsoft Visual C++. | ||
// | ||
|
||
#include "resource.h" | ||
|
||
#define APSTUDIO_READONLY_SYMBOLS | ||
///////////////////////////////////////////////////////////////////////////// | ||
// | ||
// G�n�r� � partir de la ressource TEXTINCLUDE 2. | ||
// | ||
#include "winres.h" | ||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
#undef APSTUDIO_READONLY_SYMBOLS | ||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
// ressources Fran�ais (France) | ||
|
||
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) | ||
LANGUAGE 12, 1 | ||
|
||
#ifdef APSTUDIO_INVOKED | ||
///////////////////////////////////////////////////////////////////////////// | ||
// | ||
// TEXTINCLUDE | ||
// | ||
|
||
1 TEXTINCLUDE | ||
BEGIN | ||
"resource.h\0" | ||
END | ||
|
||
2 TEXTINCLUDE | ||
BEGIN | ||
"#include ""winres.h""\r\n" | ||
"\0" | ||
END | ||
|
||
3 TEXTINCLUDE | ||
BEGIN | ||
"\r\n" | ||
"\0" | ||
END | ||
|
||
#endif // APSTUDIO_INVOKED | ||
|
||
#endif // ressources Fran�ais (France) | ||
///////////////////////////////////////////////////////////////////////////// | ||
|
||
|
||
|
||
#ifndef APSTUDIO_INVOKED | ||
///////////////////////////////////////////////////////////////////////////// | ||
// | ||
// G�n�r� � partir de la ressource TEXTINCLUDE 3. | ||
// | ||
|
||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
#endif // non APSTUDIO_INVOKED |
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
Oops, something went wrong.