Skip to content

Commit e0990ca

Browse files
committed
Extend exclusions to all polyscope x versions
1 parent ae04057 commit e0990ca

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,11 @@ jobs:
2929
- ROBOT_MODEL: 'ur5e'
3030
URSIM_VERSION: '10.7.0'
3131
PROGRAM_FOLDER: 'tests/resources/dockerursim/programs/polyscopex'
32+
POLYSCOPE_X: true
3233
- ROBOT_MODEL: 'ur15'
3334
URSIM_VERSION: '10.11.0'
3435
PROGRAM_FOLDER: 'tests/resources/dockerursim/programs/polyscopex'
36+
POLYSCOPE_X: true
3537

3638
steps:
3739
- uses: actions/checkout@v5
@@ -78,7 +80,7 @@ jobs:
7880
token: ${{ secrets.CODECOV_TOKEN }}
7981
flags: ${{ matrix.env.ROBOT_MODEL }}-${{ matrix.env.URSIM_VERSION }}
8082
- name: Generate URSim log files
81-
if: always() && matrix.env.URSIM_VERSION != '10.7.0'
83+
if: always() && matrix.env.POLYSCOPE_X != true
8284
run: |
8385
nc -q 1 192.168.56.101 29999 <<END
8486
saveLog
@@ -88,21 +90,21 @@ jobs:
8890
docker cp ursim:/ursim/polyscope.log ursim_logs/polyscope.log
8991
docker cp ursim:/ursim/log_history.txt ursim_logs/log_history.txt
9092
- name: Copy flight reports
91-
if: failure() && matrix.env.URSIM_VERSION != '10.7.0'
93+
if: failure() && matrix.env.POLYSCOPE_X != true
9294
run: |
9395
mkdir -p ursim_logs/flightreports
9496
docker cp ursim:/ursim/flightreports/. ursim_logs/flightreports/
9597
- name: Upload logfiles
9698
uses: actions/upload-artifact@v5
97-
if: always() && matrix.env.URSIM_VERSION != '10.7.0'
99+
if: always() && matrix.env.POLYSCOPE_X != true
98100
with:
99101
name: ${{matrix.env.ROBOT_MODEL}}_${{matrix.env.URSIM_VERSION}}_URSim_Logs
100102
path: ursim_logs
101103
if-no-files-found: error
102104
retention-days: 10
103105
- name: Upload test artifacts
104106
uses: actions/upload-artifact@v5
105-
if: always() && matrix.env.URSIM_VERSION != '10.7.0'
107+
if: always() && matrix.env.POLYSCOPE_X != true
106108
with:
107109
name: ${{matrix.env.ROBOT_MODEL}}_${{matrix.env.URSIM_VERSION}}_test_artifacts
108110
path: test_artifacts

0 commit comments

Comments
 (0)