Skip to content

Commit 98d9444

Browse files
committed
Do not generate and upload flight report for 10.7
1 parent 98dbc10 commit 98d9444

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
token: ${{ secrets.CODECOV_TOKEN }}
7272
flags: ${{ matrix.env.ROBOT_MODEL }}-${{ matrix.env.URSIM_VERSION }}
7373
- name: Generate URSim log files
74-
if: always()
74+
if: always() && matrix.env.URSIM_VERSION != '10.7.0'
7575
run: |
7676
nc -q 1 192.168.56.101 29999 <<END
7777
saveLog
@@ -81,21 +81,21 @@ jobs:
8181
docker cp ursim:/ursim/polyscope.log ursim_logs/polyscope.log
8282
docker cp ursim:/ursim/log_history.txt ursim_logs/log_history.txt
8383
- name: Copy flight reports
84-
if: failure()
84+
if: failure() && matrix.env.URSIM_VERSION != '10.7.0'
8585
run: |
8686
mkdir -p ursim_logs/flightreports
8787
docker cp ursim:/ursim/flightreports/. ursim_logs/flightreports/
8888
- name: Upload logfiles
8989
uses: actions/upload-artifact@v4
90-
if: always()
90+
if: always() && matrix.env.URSIM_VERSION != '10.7.0'
9191
with:
9292
name: ${{matrix.env.ROBOT_MODEL}}_${{matrix.env.URSIM_VERSION}}_URSim_Logs
9393
path: ursim_logs
9494
if-no-files-found: error
9595
retention-days: 10
9696
- name: Upload test artifacts
9797
uses: actions/upload-artifact@v4
98-
if: always()
98+
if: always() && matrix.env.URSIM_VERSION != '10.7.0'
9999
with:
100100
name: ${{matrix.env.ROBOT_MODEL}}_${{matrix.env.URSIM_VERSION}}_test_artifacts
101101
path: test_artifacts

0 commit comments

Comments
 (0)