Skip to content

Commit a97f8de

Browse files
authored
Create compile_spm.yml (#11)
1 parent 9cdb878 commit a97f8de

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.github/workflows/compile_spm.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Compile SPM
2+
on:
3+
workflow_dispatch:
4+
5+
env:
6+
MLM_LICENSE_TOKEN: ${{ secrets.MATLAB_BATCH_TOKEN }}
7+
jobs:
8+
compile:
9+
runs-on: "ubuntu-latest"
10+
strategy:
11+
fail-fast: false
12+
matrix:
13+
# This actions compiles by default with the newest available matlab version
14+
version: ["latest"] # ["2020b", "R2021a", "R2021b", "R2022a", "R2022b", "R2023a", "R2023b", "R2024a", "R2024b"]
15+
16+
steps:
17+
- name: Set up MATLAB
18+
uses: matlab-actions/setup-matlab@v2
19+
with:
20+
release: ${{ matrix.version }}
21+
products: MATLAB_Compiler
22+
23+
- name: Check out repository
24+
uses: actions/checkout@v4
25+
26+
- name: Run MPython
27+
uses: matlab-actions/run-command@v2
28+
with:
29+
command: |
30+
addpath(genpath('.mpython'));
31+
spm_make_python(true, false);
32+
33+
- name: Upload Artifact
34+
uses: actions/upload-artifact@v4
35+
with:
36+
name: spm-archive-${{ matrix.version }}
37+
path: ./spm/_spm/_spm.ctf
38+
retention-days: 1
39+

0 commit comments

Comments
 (0)