File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 5151 ROS_DISTRO : ${{ inputs.ros_distro }}
5252 ROS_REPO : ${{ inputs.ros_repo }}
5353 CMAKE_ARGS : -DUR_ROBOT_DRIVER_BUILD_INTEGRATION_TESTS=ON
54+ - name : Generate URSim log files
55+ if : always()
56+ run : |
57+ nc -q 1 192.168.56.101 29999 <<END
58+ saveLog
59+ END
60+ mkdir -p ursim_logs
61+ docker cp ursim:/ursim/URControl.log ursim_logs/URControl.log
62+ docker cp ursim:/ursim/polyscope.log ursim_logs/polyscope.log
63+ docker cp ursim:/ursim/log_history.txt ursim_logs/log_history.txt
64+ - name : Upload URSim logfiles
65+ uses : actions/upload-artifact@v3
66+ if : always()
67+ with :
68+ name : ${{ inputs.ros_distro }}_${{ inputs.ros_repo }}_URSim_Logs
69+ path : ursim_logs
70+ if-no-files-found : error
71+ retention-days : 10
You can’t perform that action at this time.
0 commit comments