File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -28,13 +28,12 @@ jobs:
28
28
run : |
29
29
python -m pip install --upgrade pip
30
30
pip install -r requirements.txt
31
- - name: Set environment variables for MATLAB Engine
32
- if : ${{ runner.os == 'macOS'}}
33
- run: |
34
- echo "DYLD_LIBRARY_PATH=/Users/runner/hostedtoolcache/MATLAB/2025.1.999/arm64/MATLAB.app/bin/maca64:$DYLD_LIBRARY_PATH" >> $GITHUB_ENV
35
- if : ${{ runner.os == 'Linux'}}
36
- run: |
37
- echo "LD_LIBRARY_PATH=/opt/hostedtoolcache/MATLAB/2025.1.999/x64/bin/glnxa64:$LD_LIBRARY_PATH" >> $GITHUB_ENV
31
+ - name : Set env var for MATLAB on macOS
32
+ if : runner.os == 'macOS'
33
+ run : echo "DYLD_LIBRARY_PATH=/Users/runner/hostedtoolcache/MATLAB/2025.1.999/arm64/MATLAB.app/bin/maca64:$DYLD_LIBRARY_PATH" >> $GITHUB_ENV
34
+ - name : Set env var for MATLAB on Linux
35
+ if : runner.os == 'Linux'
36
+ run : echo "LD_LIBRARY_PATH=/opt/hostedtoolcache/MATLAB/2025.1.999/x64/bin/glnxa64:$LD_LIBRARY_PATH" >> $GITHUB_ENV
38
37
- name : Set up MATLAB
39
38
uses : matlab-actions/setup-matlab@v2
40
39
with :
You can’t perform that action at this time.
0 commit comments