Skip to content

Commit 328a395

Browse files
authored
Update git-ci.yml - set windows and linux releases
1 parent 786b4b6 commit 328a395

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/workflows/git-ci.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,24 @@ jobs:
1717
platform: [ubuntu-latest, windows-latest]
1818

1919
# List of MATLAB releases over which to run the tests.
20-
matlab-version: [R2021a, R2021b, R2022a, R2022b, R2023b, R2024a, R2024b, latest]
20+
matlab-version: [R2023b, R2024a, R2024b, latest]
21+
22+
# UITest with gestures only from R2023b and later.
2123

2224
# We don't define any startup options until we reach R2023b (handled separately below).
2325
# matlab-startup-options: [ '' ]
2426

2527
# Windows/Mac are supported from R2021a onwards. Ubuntu is supported from R2020b onwards.
26-
# Exclude the Windows job on R2020b.
28+
29+
# Exclude unsupported Linux jobs prior to R2024b.
30+
exclude:
31+
32+
- platform: ubuntu-latest
33+
matlab-version: R2023b
2734

35+
- platform: ubuntu-latest
36+
matlab-version: R2024a
37+
2838
# Specify the platform that the job will run on.
2939
runs-on: ${{ matrix.platform }}
3040

@@ -58,4 +68,4 @@ jobs:
5868
uses: matlab-actions/run-command@v2
5969
with:
6070
startup-options: ${{ matrix.matlab-startup-options }}
61-
command: connector.internal.startConnectionProfile("loopbackHttps"); com.mathworks.matlabserver.connector.api.Connector.ensureServiceOn(); openProject("WidgetsToolbox.prj"); [~,results] = runTestSuite(); failedTests = table(results([results.Failed])); disp(failedTests); results.assertSuccess();
71+
command: openProject("WidgetsToolbox.prj"); [~,results] = runTestSuite(); failedTests = table(results([results.Failed])); disp(failedTests); results.assertSuccess();

0 commit comments

Comments
 (0)