Skip to content

Commit

Permalink
Modify product list in ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vboutrou committed Sep 12, 2024
1 parent 1015f77 commit 897e0f2
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,30 @@ jobs:
strategy:
fail-fast: false
matrix:
MATLABVersion: [R2021a,R2021b,R2022a,R2022b,R2023a,R2023b]
MATLABVersion: [R2024a,R2024b]
runs-on: ubuntu-latest
steps:
# Checks-out your repository
- uses: actions/checkout@v3

# Sets up a display server
- name: Start display server
if: ${{ always() }}
run: |
sudo apt-get install xvfb
Xvfb :99 &
echo "DISPLAY=:99" >> $GITHUB_ENV
# Sets up MATLAB
- name: Setup MATLAB
uses: matlab-actions/setup-matlab@v1
uses: matlab-actions/setup-matlab@v2
with:
release: ${{ matrix.MATLABVersion }}
products: Curve_Fitting_Toolbox Simscape Simscape_Battery Simscape_Electrical Simulink Statistics_and_Machine_Learning_Toolbox Symbolic_Math_Toolbox

# Run all the tests
- name: Run SmokeTests
uses: matlab-actions/run-command@v1
uses: matlab-actions/run-command@v2
with:
command: openProject(pwd); RunAllTests;

Expand All @@ -53,7 +62,7 @@ jobs:
- name: Setup MATLAB
uses: matlab-actions/setup-matlab@v1
with:
release: R2023b
release: R2024b

# Download the test results from artifact
- name: Download TestResults
Expand Down

0 comments on commit 897e0f2

Please sign in to comment.