1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

Testing - Specify test result folder #264

Update build-and-test workflow to specify output directories for test results
This commit is contained in:
dpasukhi 2025-01-17 17:17:07 +00:00
parent 6222d1b1f0
commit f9c046f5ff

View File

@ -442,7 +442,7 @@ jobs:
run: | run: |
cd install cd install
call env.bat vc14 win64 release call env.bat vc14 win64 release
DRAWEXE.exe -v -c testgrid DRAWEXE.exe -v -c testgrid -outdir results/windows-x64
shell: cmd shell: cmd
env: env:
LIBGL_ALWAYS_SOFTWARE: 1 LIBGL_ALWAYS_SOFTWARE: 1
@ -522,7 +522,7 @@ jobs:
run: | run: |
cd install cd install
call env.bat clang win64 release call env.bat clang win64 release
DRAWEXE.exe -v -c testgrid DRAWEXE.exe -v -c testgrid -outdir results/windows-clang-x64
shell: cmd shell: cmd
env: env:
LIBGL_ALWAYS_SOFTWARE: 1 LIBGL_ALWAYS_SOFTWARE: 1
@ -576,7 +576,7 @@ jobs:
cd install cd install
cd bin cd bin
source env.sh source env.sh
./DRAWEXE -v -c testgrid caf basic ./DRAWEXE -v -c testgrid -outdir results/macos-x64 caf basic
shell: bash shell: bash
env: env:
LIBGL_ALWAYS_SOFTWARE: 1 LIBGL_ALWAYS_SOFTWARE: 1
@ -631,7 +631,7 @@ jobs:
cd install cd install
cd bin cd bin
source env.sh source env.sh
./DRAWEXE -v -c testgrid caf basic ./DRAWEXE -v -c testgrid -outdir results/macos-gcc-x64 caf basic
shell: bash shell: bash
env: env:
LIBGL_ALWAYS_SOFTWARE: 1 LIBGL_ALWAYS_SOFTWARE: 1
@ -686,7 +686,7 @@ jobs:
cd install cd install
cd bin cd bin
source env.sh source env.sh
./DRAWEXE -v -c testgrid ./DRAWEXE -v -c testgrid -outdir results/linux-clang-x64
shell: bash shell: bash
env: env:
DISPLAY: :99 DISPLAY: :99
@ -742,7 +742,7 @@ jobs:
cd install cd install
cd bin cd bin
source env.sh source env.sh
./DRAWEXE -v -c testgrid ./DRAWEXE -v -c testgrid -outdir results/linux-gcc-x64
shell: bash shell: bash
env: env:
DISPLAY: :99 DISPLAY: :99
@ -894,24 +894,12 @@ jobs:
cd install cd install
cd bin cd bin
source env.sh source env.sh
for dir in results/current/windows-x64/*; do RESULTS_CURRENT_WINDOWS_X64=$dir; done ./DRAWEXE -v -c testdiff results/windows-x64 results/master/windows-x64 &
for dir in results/master/windows-x64/*; do RESULTS_MASTER_WINDOWS_X64=$dir; done ./DRAWEXE -v -c testdiff results/windows-clang-x64 results/master/windows-clang-x64 &
for dir in results/current/windows-clang-x64/*; do RESULTS_CURRENT_WINDOWS_CLANG_X64=$dir; done ./DRAWEXE -v -c testdiff results/macos-x64 results/master/macos-x64 &
for dir in results/master/windows-clang-x64/*; do RESULTS_MASTER_WINDOWS_CLANG_X64=$dir; done ./DRAWEXE -v -c testdiff results/macos-gcc-x64 results/master/macos-gcc-x64 &
for dir in results/current/macos-x64/*; do RESULTS_CURRENT_MACOS_X64=$dir; done ./DRAWEXE -v -c testdiff results/linux-clang-x64 results/master/linux-clang-x64 &
for dir in results/master/macos-x64/*; do RESULTS_MASTER_MACOS_X64=$dir; done ./DRAWEXE -v -c testdiff results/linux-gcc-x64 results/master/linux-gcc-x64 &
for dir in results/current/macos-gcc-x64/*; do RESULTS_CURRENT_MACOS_GCC_X64=$dir; done
for dir in results/master/macos-gcc-x64/*; do RESULTS_MASTER_MACOS_GCC_X64=$dir; done
for dir in results/current/linux-clang-x64/*; do RESULTS_CURRENT_LINUX_CLANG_X64=$dir; done
for dir in results/master/linux-clang-x64/*; do RESULTS_MASTER_LINUX_CLANG_X64=$dir; done
for dir in results/current/linux-gcc-x64/*; do RESULTS_CURRENT_LINUX_GCC_X64=$dir; done
for dir in results/master/linux-gcc-x64/*; do RESULTS_MASTER_LINUX_GCC_X64=$dir; done
./DRAWEXE -v -c testdiff $RESULTS_CURRENT_WINDOWS_X64 $RESULTS_MASTER_WINDOWS_X64 &
./DRAWEXE -v -c testdiff $RESULTS_CURRENT_WINDOWS_CLANG_X64 $RESULTS_MASTER_WINDOWS_CLANG_X64 &
./DRAWEXE -v -c testdiff $RESULTS_CURRENT_MACOS_X64 $RESULTS_MASTER_MACOS_X64 &
./DRAWEXE -v -c testdiff $RESULTS_CURRENT_MACOS_GCC_X64 $RESULTS_MASTER_MACOS_GCC_X64 &
./DRAWEXE -v -c testdiff $RESULTS_CURRENT_LINUX_CLANG_X64 $RESULTS_MASTER_LINUX_CLANG_X64 &
./DRAWEXE -v -c testdiff $RESULTS_CURRENT_LINUX_GCC_X64 $RESULTS_MASTER_LINUX_GCC_X64 &
wait wait
shell: bash shell: bash
env: env: