File tree Expand file tree Collapse file tree 2 files changed +37
-1
lines changed Expand file tree Collapse file tree 2 files changed +37
-1
lines changed Original file line number Diff line number Diff line change 1+ name : ci-nojvm
2+
3+ on :
4+ push :
5+ paths :
6+ - " **.m"
7+ - " .github/workflows/ci-nojvm.yml"
8+
9+ jobs :
10+
11+ NoJVM :
12+ timeout-minutes : 60
13+ runs-on : ${{ matrix.os }}
14+
15+ strategy :
16+ fail-fast : false
17+ matrix :
18+ os : [ubuntu-latest]
19+ release : [R2024b]
20+
21+ steps :
22+
23+ - name : Install MATLAB
24+ uses : matlab-actions/setup-matlab@v2
25+ with :
26+ release : ${{ matrix.release }}
27+
28+ - uses : actions/checkout@v4
29+
30+ - name : Run Matlab tests (buildtool)
31+ timeout-minutes : 10
32+ uses : matlab-actions/run-build@v2
33+ with :
34+ startup-options : -nojvm
Original file line number Diff line number Diff line change @@ -22,7 +22,9 @@ For reference, we further
2222[ discuss Java implementation details] ( ./Readme_java.md ) .
2323If Matlab was started with
2424[ -nojvm] ( https://www.mathworks.com/help/matlab/matlab_env/commonly-used-startup-options.html ) ,
25- many Matlab-stdlib functions do not work.
25+ some Matlab-stdlib functions do not work.
26+ We have a CI job that tests without JVM.
27+
2628
2729
2830## Acknowledgments
You can’t perform that action at this time.
0 commit comments