-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
240420.182743.HKT try using
run-command
for macos ARM64 in compile_…
…mex.yml
- Loading branch information
1 parent
e41f3e4
commit 700fa8e
Showing
2 changed files
with
17 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2184,3 +2184,6 @@ nxbdi | |
amd | ||
mmlir | ||
nojvm | ||
nodesktop | ||
nodisplay | ||
nosplash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -156,8 +156,20 @@ jobs: | |
- name: Miscellaneous setup | ||
run: bash .github/scripts/misc_setup | ||
|
||
- name: Conduct the test # We do not use matlab-actions/run-command, which is not supported on macOS ARM64 as of 20240119 | ||
run: ${{ env.MATLAB }} -nojvm -nosplash -nodesktop -nodisplay -r "options.debug = true; options.half = true; options.single = true; options.quadruple = true; options.classical = false; options.verbose = true; setup(options); testprima; cd matlab/examples; rosenbrock_example; exit" | ||
- name: Conduct the test | ||
uses: matlab-actions/[email protected] | ||
with: | ||
command: | | ||
options.debug = true; | ||
options.half = true; | ||
options.single = true; | ||
options.quadruple = true; | ||
options.classical = false; | ||
options.verbose = true; | ||
setup(options); | ||
testprima; | ||
cd matlab/examples | ||
rosenbrock_example | ||
- name: Store artifacts | ||
uses: actions/[email protected] | ||
|