This commit is contained in:
Viktor Szakats 2025-08-29 11:26:49 +02:00
parent c99c9dafda
commit 0f06862835
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
2 changed files with 59 additions and 0 deletions

View file

@ -438,7 +438,9 @@ jobs:
if: ${{ matrix.tflags != 'skipall' && matrix.tflags != 'skiprun' }}
timeout-minutes: 5
run: &perl-win32-pkgs-install |
echo '-------------------'
if [ -d /c/perl-win32-pkgs ]; then
echo "!!! perl-win32-pkgs directory detected"
cd /c/perl-win32-pkgs
cd Win32-Process-0.17
install -D blib/arch/auto/Win32/Process/Process.dll /usr/lib/perl5/site_perl/auto/Win32/Process/Process.dll
@ -451,7 +453,13 @@ jobs:
install -D blib/lib/Win32/Process/processes.pl /usr/lib/perl5/site_perl/Win32/Process/processes.pl
cd ..
cd ..
else
echo "!!! perl-win32-pkgs directory NOT detected"
fi
echo '-------------------'
perl --version
perl tests/wintest.pl
echo '-------------------'
- name: 'install test prereqs'
if: ${{ matrix.tflags != 'skipall' && matrix.tflags != 'skiprun' }}