Skip to content

Commit 5dbe791

Browse files
committed
ci: expand range of version testing mex and exe
1 parent 9be20fd commit 5dbe791

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
uses: ./.github/workflows/composite-nomex
6666

6767
- name: MEX tests
68-
if: ${{ matrix.release >= 'R2024b' }}
68+
if: ${{ matrix.release >= 'R2022a' }}
6969
uses: ./.github/workflows/composite-mex
7070

7171

.github/workflows/composite-mex/action.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,24 @@ runs:
66

77
steps:
88

9-
- name: Mex Test
9+
- name: Mex & Exe Test (>= R2024b)
1010
if: ${{ matrix.release >= 'R2024b' }}
1111
uses: matlab-actions/run-build@v2
1212
with:
1313
startup-options: ${{ matrix.startup-options }} -logfile ${{ matrix.release }}-${{ runner.os }}-test.log
1414
tasks: test:mex test:exe
15+
16+
- name: Mex Test (legacy)
17+
if: ${{ matrix.release >= 'R2022a' && matrix.release < 'R2024b' }}
18+
uses: matlab-actions/run-build@v2
19+
with:
20+
startup-options: ${{ matrix.startup-options }} -logfile ${{ matrix.release }}-${{ runner.os }}-test.log
21+
tasks: test_mex
22+
23+
24+
- name: Exe Test (legacy)
25+
if: ${{ matrix.release >= 'R2023a' && matrix.release < 'R2024b' }}
26+
uses: matlab-actions/run-build@v2
27+
with:
28+
startup-options: ${{ matrix.startup-options }} -logfile ${{ matrix.release }}-${{ runner.os }}-test.log
29+
tasks: test_exe

0 commit comments

Comments
 (0)