-
-
Notifications
You must be signed in to change notification settings - Fork 2
56 lines (42 loc) · 1.1 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: ci
on:
push:
paths:
- "**.m"
- ".github/workflows/ci.yml"
jobs:
matlab:
timeout-minutes: 15
runs-on: ${{ matrix.os }}
# R2022b has a bug with test parameter {"h"} syntax
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
release: [R2021a, R2023a, R2023b, R2024a, R2024b]
include:
- os: macos-latest
release: R2024b
- os: macos-latest
release: R2023b
- os: windows-latest
release: R2024b
- os: windows-latest
release: R2023b
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/composite-install-matlab
- uses: ./.github/workflows/composite-buildtool
prerelease:
if: false
timeout-minutes: 15
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
release: [latest-including-prerelease]
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/composite-install-matlab
- uses: ./.github/workflows/composite-buildtool