Skip to content
Closed
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
24 changes: 24 additions & 0 deletions .github/workflows/buildingMaster.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Building Master
on:
push:

jobs:
setup:
runs-on: [self-hosted, linux]
steps:
- name: Checking out repository
uses: actions/checkout@v5

- name: Install dependencies for Nitrox
run: dotnet restore

build:
needs: setup
runs-on: [self-hosted, linux]
strategy:
matrix:
configuration: [Debug, Release]
steps:
- name: Build
run: dotnet build Nitrox.sln -c ${{ matrix.configuration }} --no-restore

3 changes: 1 addition & 2 deletions Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,8 @@
<DiscoverGame GameName="Subnautica" IntermediateOutputPath="$(IntermediateOutputPath)">
<Output TaskParameter="GamePath" PropertyName="GameDir" />
</DiscoverGame>
<Error Condition="'$(GameDir)' == ''" Text="Failed to find the game 'Subnautica' on your machine" />
<PropertyGroup>
<GameDir>$(GameDir)\</GameDir>
<GameDir>/home/docker/Subnautica/</GameDir>
<GameDataFolder>Subnautica_Data</GameDataFolder>
</PropertyGroup>
<PropertyGroup Condition="$(_IsMacOS)">
Expand Down
2 changes: 1 addition & 1 deletion NitroxServer-Subnautica/NitroxServer-Subnautica.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<ItemGroup>
<PackageReference Include="AssetsTools.NET" Version="3.0.0-preview1" />
<PackageReference Include="SixLabors.ImageSharp" Version="[2.1.10]" />
<PackageReference Include="SixLabors.ImageSharp" Version="[2.1.11]" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading