Skip to content

Commit 8ae2ba8

Browse files
committedOct 24, 2021
full build
1 parent 493174e commit 8ae2ba8

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed
 

‎.circleci/config.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
keys:
1616
- cache4
1717
- run: git clone https://github.com/plotly/plotly_matlab.git --branch=master --depth=1
18+
- run: git clone https://github.com/kakearney/boundedline-pkg.git --branch=master --depth=1
19+
- run: git clone https://github.com/alchemyst/ternplot.git --branch=master --depth=1
20+
- run: git clone https://github.com/fangq/jdata.git --branch=master --depth=1
1821
- checkout
1922
- matlab/install
2023
- save_cache:
@@ -26,7 +29,7 @@ jobs:
2629
sudo apt-get install tree
2730
tree
2831
- matlab/run-command:
29-
command: addpath(genpath('plotly_matlab/plotly/')); evalMD;
32+
command: addpath(genpath('plotly_matlab/plotly/')); addpath(genpath('boundedline-pkg/')); addpath(genpath('ternplot/')); addpath(genpath('jdata/')); evalMD;
3033
- run:
3134
command: |
3235
tree

‎evalMD.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
fileList = dir('matlab/*.md');
99

1010
% Loop over all files
11-
for i = 1:3%:length(fileList)
11+
for i = 1:length(fileList)
1212
fileName = fullfile(fileList(i).folder,fileList(i).name);
1313
fprintf('Evaluating (%03d): %s\n',i,['matlab/',fileList(i).name]);
1414
mdContents = readlines(fileName,'Encoding','UTF-8');

0 commit comments

Comments
 (0)
Please sign in to comment.