Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .github/doxygen-api-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 14 additions & 1 deletion .github/workflows/nightly-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
push:
branches:
- 'main'
- 'feature/plugin-api'
paths-ignore:
- '.gitignore'
- '*.md'
Expand Down Expand Up @@ -34,6 +35,15 @@ jobs:
- name: Set platform lowercase
run: echo "MATRIX_PLATFORM=$('${{ matrix.platform }}'.ToLower())" >> $env:GITHUB_ENV

- name: Create temporary global.json
run: |
echo '{"sdk":{"version": "10.0.201"}}' > ./global.json
- name: Setup dotnet
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.201'

- name: Setup MSVC
uses: ilammy/msvc-dev-cmd@v1

Expand All @@ -60,7 +70,10 @@ jobs:
- name: Stage exe and pdb
if: matrix.platform == 'Windows64'
run: |
Copy-Item ./build/${{ env.MATRIX_PLATFORM }}/Minecraft.Server/Release/Minecraft.Server.exe staging/
Copy-Item @(
"./build/${{ env.MATRIX_PLATFORM }}/Minecraft.Server/Release/Minecraft.Server.exe",
"./build/${{ env.MATRIX_PLATFORM }}/Minecraft.Server/Release/Minecraft.Server.Fourkit.dll"
) staging/
- name: Upload artifacts
uses: actions/upload-artifact@v6
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -414,3 +414,6 @@ build/
tmp*/
_server_asset_probe/
server-data/


doxygen/
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ add_subdirectory(Minecraft.World)
add_subdirectory(Minecraft.Client)
if(PLATFORM_NAME STREQUAL "Windows64") # Server is only supported on Windows for now
add_subdirectory(Minecraft.Server)
add_subdirectory(Minecraft.Server.FourKit)
endif()

# ---
Expand All @@ -100,6 +101,7 @@ add_dependencies(Minecraft.World GenerateBuildVer)
add_dependencies(Minecraft.Client GenerateBuildVer)
if(PLATFORM_NAME STREQUAL "Windows64")
add_dependencies(Minecraft.Server GenerateBuildVer)
# add_dependencies(Minecraft.Server.FourKit GenerateBuildVer)
endif()

# ---
Expand Down
Loading
Loading