Skip to content

Commit 8c23132

Browse files
committed
initial commit
0 parents  commit 8c23132

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Debug Runtime Path Issue
2+
on:
3+
push:
4+
branches: [main]
5+
6+
env:
7+
MLM_LICENSE_TOKEN: ${{ secrets.MLM_LICENSE_TOKEN }}
8+
9+
jobs:
10+
debug-runtime-path-issue:
11+
runs-on: windows-latest
12+
13+
steps:
14+
- name: Download mpm
15+
run: |
16+
Invoke-WebRequest -Uri https://www.mathworks.com/mpm/win64/mpm -OutFile mpm.exe
17+
18+
- name: Install MATLAB products
19+
run: |
20+
.\mpm.exe install --release=R2024a --destination="${{ github.workspace }}\MATLAB" --products=MATLAB_Compiler_SDK MATLAB_Test
21+
22+
- name: Print system PATH
23+
run: echo $env:PATH
24+
shell: pwsh

0 commit comments

Comments
 (0)