From 66e9ee1a690e3bdfa8798a9544929d2b503e4a35 Mon Sep 17 00:00:00 2001 From: Sun Serega Date: Fri, 20 Jun 2025 14:29:40 +0300 Subject: [PATCH] Revert "Run GitIgnoreTester separately from other tests (#3287)" (#3288) This reverts commit da6d44fc334b1dc0caf8975d2f2452cdd88b9702. --- .github/workflows/buildandruntests.yml | 16 +--------------- _RebuildReleaseAndRunTestsForGitHubActions.bat | 3 +++ 2 files changed, 4 insertions(+), 15 deletions(-) diff --git a/.github/workflows/buildandruntests.yml b/.github/workflows/buildandruntests.yml index 3bc2790fa..6360c695e 100644 --- a/.github/workflows/buildandruntests.yml +++ b/.github/workflows/buildandruntests.yml @@ -19,6 +19,7 @@ defaults: jobs: build: + name: Prepare and build on Windows Server VM runs-on: windows-latest steps: @@ -36,21 +37,6 @@ jobs: PABCNET_INC_BUILD: false PABCNET_VERBOSE: false - run-GitIgnoreTester: - name: Run GitIgnoreTester - runs-on: windows-latest - steps: - - uses: actions/checkout@v2 - - - name: Build project in Release-mode compile and run GitIgnoreTester - run: | - - dotnet build -c Release PascalABCNET.sln - - cd .\bin - pabcnetcclear GitIgnoreTester.pas - GitIgnoreTester.exe NoWait - #- name: Publish artifacts (5/5)... # uses: actions/upload-artifact@v2 # with: diff --git a/_RebuildReleaseAndRunTestsForGitHubActions.bat b/_RebuildReleaseAndRunTestsForGitHubActions.bat index 3b5f6dfdf..e2b625417 100644 --- a/_RebuildReleaseAndRunTestsForGitHubActions.bat +++ b/_RebuildReleaseAndRunTestsForGitHubActions.bat @@ -38,6 +38,9 @@ TestRunner.exe 5 1 TestRunner.exe 6 1 @IF %ERRORLEVEL% NEQ 0 GOTO ERROR +pabcnetcclear GitIgnoreTester.pas +GitIgnoreTester.exe NoWait +@IF %ERRORLEVEL% NEQ 0 GOTO ERROR cd .. GOTO EXIT