-
Notifications
You must be signed in to change notification settings - Fork 12
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
Showing
4 changed files
with
30 additions
and
22 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 |
---|---|---|
|
@@ -42,7 +42,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
# 上传后文件的名称 | ||
name: Koro_Caster_Service-${{ steps.tag_version.outputs.tag_version }}-ububtu-latest | ||
name: Koro_Caster_Service-${{ steps.tag_version.outputs.tag_version }}-ububtu-gcc | ||
# 上传文件的路径 | ||
path: ${{github.workspace}}/bin/Koro_Caster_Service/ | ||
|
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,4 +1,4 @@ | ||
name: Windows-MinGW | ||
name: Windows-MSVC | ||
|
||
on: | ||
push: | ||
|
@@ -15,27 +15,31 @@ jobs: | |
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4.1.4 | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true # 获取所有的 Git 标签 | ||
|
||
- name: Configure CMake | ||
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. | ||
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type | ||
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -G "MinGW Makefiles" | ||
run: > | ||
cmake -B ${{github.workspace}}/build | ||
-DCMAKE_CXX_COMPILER= cl | ||
-DCMAKE_C_COMPILER=cl | ||
-DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} | ||
- name: Build | ||
# Build your program with the given configuration | ||
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} | ||
|
||
- name: Deploy Compress folder | ||
run: | | ||
copy C:\mingw64\bin\libgcc_s_seh-1.dll ${{github.workspace}}\bin\Koro_Caster_Service\ | ||
copy C:\mingw64\bin\libstdc++-6.dll ${{github.workspace}}\bin\Koro_Caster_Service\ | ||
copy C:\mingw64\bin\libwinpthread-1.dll ${{github.workspace}}\bin\Koro_Caster_Service\ | ||
move ${{github.workspace}}\bin\Koro_Caster_Service\${{env.BUILD_TYPE}}\* ${{github.workspace}}\bin\Koro_Caster_Service\ | ||
rmdir /s /q ${{github.workspace}}\bin\Koro_Caster_Service\${{env.BUILD_TYPE}} | ||
xcopy /S /E /I ${{github.workspace}}\env\Redis-7.0.15-Windows-x64\ ${{github.workspace}}\bin\Koro_Caster_Service\env\Redis-7.0.15-Windows-x64\ | ||
- name: Get tag version | ||
id: tag_version | ||
run: echo "::set-output name=tag_version::$(git describe --tags --dirty=-dev)" | ||
|
@@ -44,6 +48,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
# 上传后文件的名称 | ||
name: Koro_Caster_Service-${{ steps.tag_version.outputs.tag_version }}-windows-mingw | ||
name: Koro_Caster_Service-${{ steps.tag_version.outputs.tag_version }}-windows-msvc | ||
# 上传的压缩包 | ||
path: ${{github.workspace}}\bin\Koro_Caster_Service\ | ||
|
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,4 +1,4 @@ | ||
name: Windows-MSVC | ||
name: Windows-MinGW | ||
|
||
on: | ||
push: | ||
|
@@ -15,23 +15,27 @@ jobs: | |
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/checkout@v4.1.4 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true # 获取所有的 Git 标签 | ||
|
||
- name: Configure CMake | ||
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. | ||
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type | ||
run: > | ||
cmake -B ${{github.workspace}}/build | ||
-DCMAKE_CXX_COMPILER= cl | ||
-DCMAKE_C_COMPILER=cl | ||
-DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} | ||
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -G "MinGW Makefiles" | ||
|
||
- name: Build | ||
# Build your program with the given configuration | ||
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} | ||
|
||
|
||
- name: Deploy Compress folder | ||
run: | | ||
copy C:\mingw64\bin\libgcc_s_seh-1.dll ${{github.workspace}}\bin\Koro_Caster_Service\ | ||
copy C:\mingw64\bin\libstdc++-6.dll ${{github.workspace}}\bin\Koro_Caster_Service\ | ||
copy C:\mingw64\bin\libwinpthread-1.dll ${{github.workspace}}\bin\Koro_Caster_Service\ | ||
xcopy /S /E /I ${{github.workspace}}\env\Redis-7.0.15-Windows-x64\ ${{github.workspace}}\bin\Koro_Caster_Service\env\Redis-7.0.15-Windows-x64\ | ||
- name: Get tag version | ||
id: tag_version | ||
run: echo "::set-output name=tag_version::$(git describe --tags --dirty=-dev)" | ||
|
@@ -40,7 +44,6 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
# 上传后文件的名称 | ||
name: Koro_Caster_Service-${{ steps.tag_version.outputs.tag_version }}-windows-msvc | ||
name: Koro_Caster_Service-${{ steps.tag_version.outputs.tag_version }}-windows-mingw | ||
# 上传的压缩包 | ||
path: ${{github.workspace}}\bin\Koro_Caster_Service\ | ||
|
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