|
@@ -141,15 +141,22 @@ jobs:
|
|
|
needs: create_release
|
|
needs: create_release
|
|
|
runs-on: windows-latest
|
|
runs-on: windows-latest
|
|
|
steps:
|
|
steps:
|
|
|
- - name: Grab the latest copy of the repository.
|
|
|
|
|
|
|
+ - name: Checkout
|
|
|
uses: actions/checkout@v2
|
|
uses: actions/checkout@v2
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
- name: Compile ENet (non-debug)
|
|
- name: Compile ENet (non-debug)
|
|
|
uses: ashutoshvarma/action-cmake-build@master
|
|
uses: ashutoshvarma/action-cmake-build@master
|
|
|
with:
|
|
with:
|
|
|
build-dir: ${{ runner.workspace }}/ReleaseBuild
|
|
build-dir: ${{ runner.workspace }}/ReleaseBuild
|
|
|
build-type: Release
|
|
build-type: Release
|
|
|
configure-options: -DENET_DEBUG=0
|
|
configure-options: -DENET_DEBUG=0
|
|
|
|
|
+
|
|
|
|
|
+ - name: Find out some stuffs
|
|
|
|
|
+ run: |
|
|
|
|
|
+ dir "${{ runner.workspace }}/ReleaseBuild/"
|
|
|
|
|
+ dir "${{ runner.workspace }}/ReleaseBuild/x64"
|
|
|
|
|
+ dir "${{ runner.workspace }}/ReleaseBuild/x64/Release"
|
|
|
|
|
+
|
|
|
#
|
|
#
|
|
|
# - name: Configure and build non-debug DLL using CMake
|
|
# - name: Configure and build non-debug DLL using CMake
|
|
|
# uses: threeal/[email protected]
|
|
# uses: threeal/[email protected]
|
|
@@ -166,11 +173,9 @@ jobs:
|
|
|
# build-dir: ${{ runner.workspace }}/debug-build
|
|
# build-dir: ${{ runner.workspace }}/debug-build
|
|
|
# options: ENET_DEBUG=1 ENET_SHARED=1
|
|
# options: ENET_DEBUG=1 ENET_SHARED=1
|
|
|
# run-build: true
|
|
# run-build: true
|
|
|
- - name: Find out some stuffs.
|
|
|
|
|
- run: |
|
|
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
# dir "${{ runner.workspace }}/build/x64/Release" && dir "${{ runner.workspace }}/debug-build/x64/Debug"
|
|
# dir "${{ runner.workspace }}/build/x64/Release" && dir "${{ runner.workspace }}/debug-build/x64/Debug"
|
|
|
- dir "${{ runner.workspace }}/ReleaseBuild/x64/Release"
|
|
|
|
|
-
|
|
|
|
|
# - name: Run automated build script
|
|
# - name: Run automated build script
|
|
|
# run: |
|
|
# run: |
|
|
|
# cd ${{ runner.workspace }}\ENet-CSharp && &.\BuildScripts\ms-windows.cmd "${{ runner.workspace }}"
|
|
# cd ${{ runner.workspace }}\ENet-CSharp && &.\BuildScripts\ms-windows.cmd "${{ runner.workspace }}"
|