Skip to content

Commit 9e711af

Browse files
committed
ci: add R2022b
1 parent 3d1b379 commit 9e711af

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,21 @@ jobs:
1616
timeout-minutes: 15
1717
runs-on: ${{ matrix.os }}
1818

19-
# R2022b has a bug with test parameter {"h"} syntax
2019
# R2022a and older has a runner-only (not real computer) path bug where it looks inside example/java despite not being told to
2120
strategy:
2221
fail-fast: false
2322
matrix:
2423
os: [ubuntu-22.04]
25-
release: [R2023a, R2023b, R2024a, R2024b]
24+
release: [R2022b, R2023a, R2023b, R2024a, R2024b]
2625
include:
2726
- os: macos-latest
2827
release: R2024b
2928
- os: macos-latest
30-
release: R2023b
29+
release: R2023a
3130
- os: windows-latest
3231
release: R2024b
3332
- os: windows-latest
34-
release: R2023b
33+
release: R2023a
3534

3635
steps:
3736
- uses: actions/checkout@v4

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ runs:
2121
tasks: test
2222

2323
- name: Mex Test
24-
if: ${{ matrix.release >= 'R2022b' || startsWith(matrix.release, 'latest') }}
24+
if: ${{ matrix.release >= 'R2023a' || startsWith(matrix.release, 'latest') }}
2525
uses: matlab-actions/run-build@v2
2626
with:
2727
startup-options: ${{ matrix.startup-options }}
2828
tasks: mex test
2929

3030

31-
# - name: Run tests (manual)
32-
# if: ${{ matrix.release < 'R2022b' && !startsWith(matrix.release, 'latest') }}
33-
# uses: matlab-actions/run-tests@v2
34-
# with:
35-
# source-folder: ${{ github.workspace }}
36-
# select-by-folder: test
37-
# strict: true
31+
- name: Run tests (manual)
32+
if: ${{ matrix.release < 'R2023a' && !startsWith(matrix.release, 'latest') }}
33+
uses: matlab-actions/run-tests@v2
34+
with:
35+
source-folder: ${{ github.workspace }}
36+
select-by-folder: test
37+
strict: true

0 commit comments

Comments
 (0)