Skip to content

Commit

Permalink
Merge pull request #65 from idigs/main
Browse files Browse the repository at this point in the history
print output.korc from CI workflow
  • Loading branch information
mbeidler3 authored Oct 30, 2024
2 parents 211036a + 560e7fb commit 927e9db
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion ci_stub/onyx_job_test_gpu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,21 @@ env | grep JOB_COUNT

JOB_COUNT=1

cd ./KORC/build_gpu && ctest -j ${JOB_COUNT:-1} --output-on-failure
pushd ./KORC/build_gpu >/dev/null

ctest -j ${JOB_COUNT:-1} --output-on-failure

pushd ./bin >/dev/null

for j in "mars_test" "egyro_test"; do
for i in $(ls -1 ./${j}/ | sort -k1.6n); do
for x in {1..20}; do echo "."; done
echo "onyx_job_test_gpu >> [Info] << ${j}/${i}/output.korc"
for x in {1..5}; do echo "."; done
cat ./${j}/${i}/output.korc
done
done


popd >/dev/null
popd >/dev/null

0 comments on commit 927e9db

Please sign in to comment.