forked from matlab2tikz/matlab2tikz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatlab2tikz.sublime-project
57 lines (57 loc) · 2 KB
/
matlab2tikz.sublime-project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"folders":
[
{
"path": "."
}
],
"build_systems":
[
{
"name": "CI tests (Octave)",
"env": {"CONTINUOUS_INTEGRATION":"true"},
"selector": "source.matlab",
"working_dir": "${project_path}/test", // this might get overwritten by startup scripts
"cmd": ["octave","-q",
"--eval","cd('${project_path}/test'); runMatlab2TikzTests()"]
},
{
"name": "CI tests (MATLAB)",
"env": {"CONTINUOUS_INTEGRATION":"true"},
"selector": "source.matlab",
"working_dir": "${project_path}/test", // this is not respected by MATLAB R2015a depending on the user settings!
"cmd": ["matlab", "-nosplash",
"-r","cd('${project_path}/test'); runMatlab2TikzTests()"]
},
{
"name": "CI tests (MATLAB HG1)",
"env": {"CONTINUOUS_INTEGRATION":"true"},
"selector": "source.matlab",
"working_dir": "${project_path}/test", // this is not respected by MATLAB R2015a depending on the user settings!
"cmd": ["matlab-hg1", "-nosplash",
"-r","cd('${project_path}/test'); runMatlab2TikzTests()"]
},
{
"name": "CI tests (MATLAB HG2)",
"env": {"CONTINUOUS_INTEGRATION":"true"},
"selector": "source.matlab",
"working_dir": "${project_path}/test", // this is not respected by MATLAB R2015a depending on the user settings!
"cmd": ["matlab-hg2", "-nosplash",
"-r","cd('${project_path}/test'); runMatlab2TikzTests()"]
},
{
"name": "ACID: make",
"working_dir": "${project_path}/test/tex",
"cmd": ["make","-j8"]
},
{
"name": "ACID: distclean",
"working_dir": "${project_path}/test/tex",
"cmd": ["make","distclean"]
}
],
"settings":
{
"FuzzyFilePath":{}
}
}