File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 71
71
token : ${{ secrets.CODECOV_TOKEN }}
72
72
flags : ${{ matrix.env.ROBOT_MODEL }}-${{ matrix.env.URSIM_VERSION }}
73
73
- name : Generate URSim log files
74
- if : always()
74
+ if : always() && matrix.env.URSIM_VERSION != '10.7.0'
75
75
run : |
76
76
nc -q 1 192.168.56.101 29999 <<END
77
77
saveLog
@@ -81,21 +81,21 @@ jobs:
81
81
docker cp ursim:/ursim/polyscope.log ursim_logs/polyscope.log
82
82
docker cp ursim:/ursim/log_history.txt ursim_logs/log_history.txt
83
83
- name : Copy flight reports
84
- if : failure()
84
+ if : failure() && matrix.env.URSIM_VERSION != '10.7.0'
85
85
run : |
86
86
mkdir -p ursim_logs/flightreports
87
87
docker cp ursim:/ursim/flightreports/. ursim_logs/flightreports/
88
88
- name : Upload logfiles
89
89
uses : actions/upload-artifact@v4
90
- if : always()
90
+ if : always() && matrix.env.URSIM_VERSION != '10.7.0'
91
91
with :
92
92
name : ${{matrix.env.ROBOT_MODEL}}_${{matrix.env.URSIM_VERSION}}_URSim_Logs
93
93
path : ursim_logs
94
94
if-no-files-found : error
95
95
retention-days : 10
96
96
- name : Upload test artifacts
97
97
uses : actions/upload-artifact@v4
98
- if : always()
98
+ if : always() && matrix.env.URSIM_VERSION != '10.7.0'
99
99
with :
100
100
name : ${{matrix.env.ROBOT_MODEL}}_${{matrix.env.URSIM_VERSION}}_test_artifacts
101
101
path : test_artifacts
You can’t perform that action at this time.
0 commit comments