Skip to content

Commit

Permalink
Remove RUN_THIS.py
Browse files Browse the repository at this point in the history
  • Loading branch information
stellar-novas committed Jun 16, 2024
1 parent b5dd6eb commit 3cfc36f
Show file tree
Hide file tree
Showing 14 changed files with 2 additions and 157 deletions.
5 changes: 0 additions & 5 deletions BuildChecker/.gitignore

This file was deleted.

4 changes: 1 addition & 3 deletions BuildChecker/BuildChecker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ https://docs.microsoft.com/en-us/visualstudio/msbuild/msbuild
-->
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Python>python3</Python>
<Python Condition="'$(OS)'=='Windows_NT' Or '$(OS)'=='Windows'">py -3</Python>
<ProjectGuid>{C899FCA4-7037-4E49-ABC2-44DE72487110}</ProjectGuid>
<TargetFrameworkMoniker>.NETFramework, Version=v4.7.2</TargetFrameworkMoniker>
<RestorePackages>false</RestorePackages>
Expand All @@ -39,7 +37,7 @@ https://docs.microsoft.com/en-us/visualstudio/msbuild/msbuild
<OutputPath>bin\DebugOpt\</OutputPath>
</PropertyGroup>
<Target Name="Build">
<Exec Command="$(Python) git_helper.py" CustomErrorRegularExpression="^Error" />
<Exec Command="git submodule update --init --recursive"/>
</Target>
<Target Name="Rebuild" DependsOnTargets="Build" />
<Target Name="Clean">
Expand Down
110 changes: 0 additions & 110 deletions BuildChecker/git_helper.py

This file was deleted.

13 changes: 0 additions & 13 deletions BuildChecker/hooks/post-checkout

This file was deleted.

5 changes: 0 additions & 5 deletions BuildChecker/hooks/post-merge

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ We provide some scripts shown below to make the job easier.
### Build dependencies

> - Git
> - DOTNET SDK 8.0.100
> - .NET SDK 8.0.100

### Windows
Expand Down
13 changes: 0 additions & 13 deletions RUN_THIS.py

This file was deleted.

1 change: 0 additions & 1 deletion Scripts/bat/buildAllDebug.bat
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
@echo off
cd ../../

call python RUN_THIS.py
call git submodule update --init --recursive
call dotnet build -c Debug

Expand Down
1 change: 0 additions & 1 deletion Scripts/bat/buildAllRelease.bat
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
@echo off
cd ../../

call python RUN_THIS.py
call git submodule update --init --recursive
call dotnet build -c Release

Expand Down
1 change: 0 additions & 1 deletion Scripts/bat/buildAllTools.bat
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
@echo off
cd ../../

call python RUN_THIS.py
call git submodule update --init --recursive
call dotnet build -c Tools

Expand Down
1 change: 0 additions & 1 deletion Scripts/sh/buildAllDebug.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,5 @@ fi

cd ../../

python RUN_THIS.py
git submodule update --init --recursive
dotnet build -c Debug
1 change: 0 additions & 1 deletion Scripts/sh/buildAllRelease.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,5 @@ fi

cd ../../

python RUN_THIS.py
git submodule update --init --recursive
dotnet build -c Release
1 change: 0 additions & 1 deletion Scripts/sh/buildAllTools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,5 @@ fi

cd ../../

python RUN_THIS.py
git submodule update --init --recursive
dotnet build -c Tools
1 change: 0 additions & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ let
dbus
at-spi2-core
cups
python3
];
in pkgs.mkShell {
name = "space-station-14-devshell";
Expand Down

0 comments on commit 3cfc36f

Please sign in to comment.