From bfd88c0dc56cb33d89ecd5bac341c89764a58914 Mon Sep 17 00:00:00 2001 From: wixoaGit Date: Sat, 14 Oct 2023 00:30:32 -0400 Subject: [PATCH 1/2] Move DMCompiler's build output path --- DMCompiler/DMCompiler.csproj | 2 ++ 1 file changed, 2 insertions(+) diff --git a/DMCompiler/DMCompiler.csproj b/DMCompiler/DMCompiler.csproj index 9b7014b99e..c533fdee4f 100644 --- a/DMCompiler/DMCompiler.csproj +++ b/DMCompiler/DMCompiler.csproj @@ -6,6 +6,8 @@ enable Debug;Release;Tools AnyCPU + false + ..\bin\DMCompiler\ From 3532580fc13037c159bd236ed2e11d621f57f543 Mon Sep 17 00:00:00 2001 From: wixoaGit Date: Sat, 14 Oct 2023 00:39:58 -0400 Subject: [PATCH 2/2] Update compiler paths in GitHub workflow --- .github/workflows/compiler-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/compiler-test.yml b/.github/workflows/compiler-test.yml index 39d7e38ea4..329007ebf9 100644 --- a/.github/workflows/compiler-test.yml +++ b/.github/workflows/compiler-test.yml @@ -33,14 +33,14 @@ jobs: - name: Build run: dotnet build main/OpenDream.sln --configuration Release --no-restore /m - name: Compile TestGame - run: main\DMCompiler\bin\Release\net7.0\DMCompiler.exe main\TestGame\environment.dme + run: main\bin\DMCompiler\DMCompiler.exe main\TestGame\environment.dme - name: Checkout Modified /tg/station uses: actions/checkout@v2 with: repository: wixoaGit/tgstation path: tg - name: Compile Modified /tg/station - run: main\DMCompiler\bin\Release\net7.0\DMCompiler.exe tg\tgstation.dme + run: main\bin\DMCompiler\DMCompiler.exe tg\tgstation.dme - name: Checkout 64-bit Paradise uses: actions/checkout@v2 with: @@ -48,4 +48,4 @@ jobs: ref: rustg_64 path: para - name: Compile 64-bit Paradise - run: main\DMCompiler\bin\Release\net7.0\DMCompiler.exe para\paradise.dme + run: main\bin\DMCompiler\DMCompiler.exe para\paradise.dme