Run GitIgnoreTester separately from other tests (#3287)

This commit is contained in:
Sun Serega 2025-06-18 22:29:49 +03:00 committed by GitHub
parent 77e408c1ac
commit da6d44fc33
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 15 additions and 4 deletions

View file

@ -19,7 +19,6 @@ defaults:
jobs:
build:
name: Prepare and build on Windows Server VM
runs-on: windows-latest
steps:
@ -37,6 +36,21 @@ 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:

View file

@ -38,9 +38,6 @@ 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