-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from libxengine/develop
V3.14.0.1001 Merge
- Loading branch information
Showing
62 changed files
with
746 additions
and
318 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,64 @@ | ||
name: ubuntu build workflows | ||
|
||
on: | ||
push: | ||
branches: [ "develop" ] | ||
pull_request: | ||
branches: [ "develop" ] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
# Set fail-fast to false to ensure that feedback is delivered for all matrix combinations. Consider changing this to true when your workflow is stable. | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- os: ubuntu-22.04 | ||
#- os: ubuntu-24.04 | ||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
# 检出您的主仓库代码 | ||
- name: Checkout main repository code | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: 'develop' | ||
|
||
# 检出依赖的xengine仓库到指定的xengine目录 | ||
- name: Checkout dependency repository (xengine) | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: libxengine/libxengine | ||
path: libxengine | ||
|
||
- name: sub module checkout (opensource) | ||
run: | | ||
git submodule init | ||
git submodule update | ||
# 设置依赖库的环境变量 | ||
- name: Set up Dependency Environment Variables | ||
run: | | ||
cd libxengine | ||
chmod 777 * | ||
sudo ./XEngine_LINEnv.sh -i 3 | ||
cd .. | ||
#编译 | ||
- name: make | ||
run: | | ||
cd XEngine_Source | ||
make | ||
make FLAGS=InstallAll | ||
make FLAGS=CleanAll | ||
make RELEASE=1 | ||
make FLAGS=InstallAll | ||
make FLAGS=CleanAll | ||
cd .. | ||
- name: test | ||
run: | | ||
cd XEngine_Release | ||
./XEngine_AuthorizeService -t |
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,64 @@ | ||
name: macos build workflows | ||
|
||
on: | ||
push: | ||
branches: [ "develop" ] | ||
pull_request: | ||
branches: [ "develop" ] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
include: | ||
- os: macos-13 | ||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- name: Checkout main repository code | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: 'develop' | ||
|
||
# 检出依赖的xengine仓库到指定的xengine目录 | ||
- name: Checkout dependency repository (xengine) | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: libxengine/libxengine | ||
path: libxengine | ||
|
||
- name: sub module checkout (opensource) | ||
run: | | ||
git submodule init | ||
git submodule update | ||
- name: brew install | ||
run: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | ||
|
||
# 设置依赖库的环境变量 | ||
- name: Set up Dependency Environment Variables | ||
run: | | ||
cd libxengine | ||
chmod 777 * | ||
./XEngine_LINEnv.sh -i 3 | ||
cd .. | ||
#编译 | ||
- name: make debug | ||
run: | | ||
cd XEngine_Source | ||
make PLATFORM=mac | ||
make PLATFORM=mac FLAGS=InstallAll | ||
make PLATFORM=mac FLAGS=CleanAll | ||
- name: make release | ||
run: | | ||
cd XEngine_Source | ||
make PLATFORM=mac RELEASE=1 | ||
make PLATFORM=mac FLAGS=InstallAll | ||
make PLATFORM=mac FLAGS=CleanAll | ||
- name: test | ||
run: | | ||
cd XEngine_Release | ||
./XEngine_AuthorizeService -t |
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,77 @@ | ||
name: windows build workflows | ||
|
||
on: | ||
push: | ||
branches: [ "develop" ] | ||
pull_request: | ||
branches: [ "develop" ] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
# Set fail-fast to false to ensure that feedback is delivered for all matrix combinations. Consider changing this to true when your workflow is stable. | ||
fail-fast: false | ||
matrix: | ||
configuration: [Debug ,Release] | ||
platform: [x86 ,x64] | ||
|
||
runs-on: windows-latest # 最新的 Windows 环境 | ||
|
||
steps: | ||
# 检出您的主仓库代码 | ||
- name: Checkout main repository code | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: 'develop' | ||
|
||
# 检出依赖的xengine仓库到指定的xengine目录 | ||
- name: Checkout dependency repository (xengine) | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: libxengine/libxengine | ||
path: xengine | ||
|
||
- name: sub module checkout (opensource) | ||
run: | | ||
git submodule init | ||
git submodule update | ||
shell: pwsh | ||
|
||
# 设置依赖库的环境变量 | ||
- name: Set up Dependency Environment Variables | ||
run: | | ||
echo "XENGINE_INCLUDE=${{ github.workspace }}/xengine" | Out-File -FilePath $env:GITHUB_ENV -Append | ||
echo "XENGINE_LIB32=${{ github.workspace }}/xengine/XEngine_Windows/x86" | Out-File -FilePath $env:GITHUB_ENV -Append | ||
echo "XENGINE_LIB64=${{ github.workspace }}/xengine/XEngine_Windows/x64" | Out-File -FilePath $env:GITHUB_ENV -Append | ||
shell: pwsh | ||
|
||
# 配置 MSBuild 的路径,准备构建 VC++ 项目 | ||
- name: Setup MSBuild | ||
uses: microsoft/[email protected] | ||
#编译 | ||
- name: Build Solution | ||
run: msbuild XEngine_Source/XEngine.sln /p:Configuration=${{ matrix.configuration }} /p:Platform=${{ matrix.platform }} | ||
#测试 | ||
- name: Conditional Step for x86 Release | ||
if: matrix.configuration == 'Release' && matrix.platform == 'x86' | ||
run: | | ||
cp -r XEngine_Source/Release/*.dll XEngine_Release/ | ||
cp -r XEngine_Source/Release/*.exe XEngine_Release/ | ||
cp -r XEngine_Source/VSCopy_x86.bat XEngine_Release/ | ||
cd XEngine_Release | ||
./VSCopy_x86.bat | ||
./XEngine_AuthorizeService.exe -t | ||
shell: pwsh | ||
- name: Conditional Step for x86 Debug | ||
if: matrix.configuration == 'Debug' && matrix.platform == 'x86' | ||
run: | | ||
cp -r XEngine_Source/Debug/*.dll XEngine_Release/ | ||
cp -r XEngine_Source/Debug/*.exe XEngine_Release/ | ||
cp -r XEngine_Source/VSCopy_x86.bat XEngine_Release/ | ||
cd XEngine_Release | ||
./VSCopy_x86.bat | ||
./XEngine_AuthorizeService.exe -t | ||
shell: pwsh |
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
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
Binary file not shown.
Binary file not shown.
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
Oops, something went wrong.