File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,8 +16,13 @@ before_script:
1616 - bin/cljsc src/test/cljs "{:optimizations :advanced :output-wrapper true :verbose true :compiler-stats true :parallel-build true :output-dir \"builds/out-adv\"}" > builds/out-adv/core-advanced-test.js
1717
1818script :
19- - jsc builds/out-adv/core-advanced-test.js | grep -o '[[:digit:]]*' | tail -n 2 | python script/check.py
20- - ./spidermoney/js -f builds/out-adv/core-advanced-test.js | grep -o '[[:digit:]]*' | tail -n 2 | python script/check.py
21- - jjs builds/out-adv/core-advanced-test.js | grep -o '[[:digit:]]*' | tail -n 2 | python script/check.py
22- - script/test-self-host | grep -o '[[:digit:]]*' | tail -n 2 | python script/check.py
23- - script/test-self-parity | grep -o '[[:digit:]]*' | tail -n 2 | python script/check.py
19+ - jsc builds/out-adv/core-advanced-test.js | tee test-out.txt
20+ - grep -o '[[:digit:]]*' test-out.txt | tail -n 2 | python script/check.py
21+ - ./spidermoney/js -f builds/out-adv/core-advanced-test.js | tee test-out.txt
22+ - grep -o '[[:digit:]]*' test-out.txt | tail -n 2 | python script/check.py
23+ - jjs builds/out-adv/core-advanced-test.js | tee test-out.txt
24+ - grep -o '[[:digit:]]*' test-out.txt | tail -n 2 | python script/check.py
25+ - script/test-self-host | tee test-out.txt
26+ - grep -o '[[:digit:]]*' test-out.txt | tail -n 2 | python script/check.py
27+ - script/test-self-parity | tee test-out.txt
28+ - grep -o '[[:digit:]]*' test-out.txt | tail -n 2 | python script/check.py
You can’t perform that action at this time.
0 commit comments