Skip to content

Commit 8c4d05d

Browse files
authored
Explicit path in Compile (#11)
1 parent b2fe7aa commit 8c4d05d

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

.github/workflows/compile_spm.yml

+15-15
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,21 @@ jobs:
2020
release: ${{ matrix.version }}
2121
products: MATLAB_Compiler
2222

23-
# - name: Check out repository
24-
# uses: actions/checkout@v4
23+
- name: Check out repository
24+
uses: actions/checkout@v4
2525

26-
# - name: Run MPython
27-
# uses: matlab-actions/run-command@v2
28-
# with:
29-
# command: |
30-
# addpath(genpath('.mpython'));
31-
# cd('.mpython');
32-
# spm_make_python('./mpython', true, false);
26+
- name: Run MPython
27+
uses: matlab-actions/run-command@v2
28+
with:
29+
command: |
30+
cd('.mpython');
31+
addpath(genpath('.'));
32+
spm_make_python('.', true, false);
3333
34-
# - name: Upload Artifact
35-
# uses: actions/upload-artifact@v4
36-
# with:
37-
# name: spm-archive-${{ matrix.version }}
38-
# path: ./spm/_spm/_spm.ctf
39-
# retention-days: 1
34+
- name: Upload Artifact
35+
uses: actions/upload-artifact@v4
36+
with:
37+
name: spm-archive-${{ matrix.version }}
38+
path: ./spm/_spm/_spm.ctf
39+
retention-days: 1
4040

0 commit comments

Comments
 (0)