Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions install/ci-vm/ci-linux/ci/runCI
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ if [ -e "${dstDir}/ccextractor" ]; then
cp $dstDir/* ./
chmod 700 ccextractor
chmod +x ${tester}
# Log binary version for verification (commit SHA will be visible in output)
echo "=== CCExtractor Binary Version ===" >> "${logFile}"
./ccextractor --version >> "${logFile}" 2>&1
echo "=== End Version Info ===" >> "${logFile}"
postStatus "testing" "Running tests"
executeCommand cd ${suiteDstDir}
executeCommand ${tester} --debug --entries "${testFile}" --executable "ccextractor" --tempfolder "${tempFolder}" --timeout 600 --reportfolder "${reportFolder}" --resultfolder "${resultFolder}" --samplefolder "${sampleFolder}" --method Server --url "${reportURL}"
Expand Down
4 changes: 4 additions & 0 deletions install/ci-vm/ci-windows/ci/runCI.bat
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ echo Checking for CCExtractor build artifact
if EXIST "%dstDir%\ccextractorwinfull.exe" (
echo Run tests
copy "%dstDir%\*" .
rem Log binary version for verification (commit SHA will be visible in output)
echo === CCExtractor Binary Version === >> "%logFile%"
ccextractorwinfull.exe --version >> "%logFile%" 2>&1
echo === End Version Info === >> "%logFile%"
call :postStatus "testing" "Running tests"
call :executeCommand cd %suiteDstDir%
call :executeCommand "%tester%" --debug True --entries "%testFile%" --executable "ccextractorwinfull.exe" --tempfolder "%tempFolder%" --timeout 600 --reportfolder "%reportFolder%" --resultfolder "%resultFolder%" --samplefolder "%sampleFolder%" --method Server --url "%reportURL%"
Expand Down