Skip to content

Commit 099fbbd

Browse files
committed
Do not generate and upload flight report for 10.7
1 parent f80a950 commit 099fbbd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 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() && ${{ env.URSIM_VERSION != '10.7.0' }}
7575
run: |
7676
nc -q 1 192.168.56.101 29999 <<END
7777
saveLog
@@ -87,15 +87,15 @@ jobs:
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() && ${{ 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() && ${{ 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)