File tree Expand file tree Collapse file tree 1 file changed +5
-23
lines changed
Expand file tree Collapse file tree 1 file changed +5
-23
lines changed Original file line number Diff line number Diff line change @@ -25,33 +25,15 @@ jobs:
2525 runs-on : ${{ matrix.os }}
2626
2727 steps :
28- - uses : actions/checkout@v4
29- with :
30- submodules : true
31- - name : Set up Python version ${{ matrix.version }}
32- uses : actions/setup-python@v4
33- with :
34- python-version : ${{ matrix.version }}
35- - name : Install OMP (MacOS)
36- if : runner.os == 'macOS'
37- run : |
38- brew install llvm libomp
39- echo "export CC=/usr/local/opt/llvm/bin/clang" >> ~/.bashrc
40- echo "export CXX=/usr/local/opt/llvm/bin/clang++" >> ~/.bashrc
41- echo "export CFLAGS=\"$CFLAGS -I/usr/local/opt/libomp/include\"" >> ~/.bashrc
42- echo "export CXXFLAGS=\"$CXXFLAGS -I/usr/local/opt/libomp/include\"" >> ~/.bashrc
43- echo "export LDFLAGS=\"$LDFLAGS -Wl,-rpath,/usr/local/opt/libomp/lib -L/usr/local/opt/libomp/lib -lomp\"" >> ~/.bashrc
44- source ~/.bashrc
45- - name : Install OMP (Linux)
46- if : runner.os == 'Linux'
47- run : |
48- sudo apt-get update
49- sudo apt install libomp-dev
5028 - name : Set up MATLAB
5129 uses : matlab-actions/setup-matlab@v2
5230 with :
5331 release : R2024a
54- - name : Install and Test with pytest
32+ - name : Run script
33+ uses : matlab-actions/run-command@v2
34+ with :
35+ command : disp(matlabroot)
36+ - name : Install
5537 run : |
5638 export PATH="$pythonLocation:$PATH"
5739 python -m pip install RATapi[MATLAB_2024a]
You can’t perform that action at this time.
0 commit comments