Skip to content

Commit c1144a5

Browse files
authored
Update ci.yml
1 parent 38235fb commit c1144a5

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/ci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,31 @@ permissions:
1414
pages: write
1515
id-token: write
1616

17+
18+
1719
jobs:
20+
debug:
21+
runs-on: ubuntu-latest
22+
env:
23+
LD_PRELOAD: /usr/lib/x86_64-linux-gnu/libstdc++.so.6
24+
steps:
25+
- uses: actions/checkout@v4
26+
- name: Start display server
27+
if: ${{ always() }}
28+
run: |
29+
sudo apt-get install xvfb
30+
Xvfb :99 &
31+
echo "DISPLAY=:99" >> $GITHUB_ENV
32+
- name: Setup MATLAB
33+
uses: matlab-actions/setup-matlab@v2
34+
with:
35+
release: R2025a
36+
products: MATLAB Simulink Robotics_System_Toolbox Simscape_Multibody Statistics_and_Machine_Learning_Toolbox Image_Processing_Toolbox
37+
- name: Run SmokeTests
38+
uses: matlab-actions/run-command@v2
39+
with:
40+
command: openProject(pwd); sim("Models/ManipulatorTrajectoryPlanningRandomized.slx","StopTime","5");
41+
1842
test:
1943
strategy:
2044
fail-fast: false

0 commit comments

Comments
 (0)