File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change 50
50
run : ./ci/install_jsc.sh
51
51
52
52
- name : Run tests
53
- run : WebKit/WebKitBuild/Release/bin/jsc builds/out-adv/core-advanced-test.js
53
+ run : |
54
+ WebKit/WebKitBuild/Release/bin/jsc builds/out-adv/core-advanced-test.js | tee test-out.txt
55
+ grep -qxF '0 failures, 0 errors.' test-out.txt
54
56
55
57
# Self-host Tests
56
58
self-host-test :
87
89
run : clojure -A:selfhost.test.build
88
90
89
91
- name : Run tests
90
- run : node builds/out-self/core-self-test.js
92
+ run : |
93
+ node builds/out-self/core-self-test.js | tee test-out.txt
94
+ grep -qxF '0 failures, 0 errors.' test-out.txt
91
95
92
96
# Self-parity Tests
93
97
self-parity-test :
@@ -124,7 +128,9 @@ jobs:
124
128
run : clojure -A:selfparity.test.build
125
129
126
130
- name : Run tests
127
- run : node builds/out-self-parity/main.js
131
+ run : |
132
+ node builds/out-self-parity/main.js | tee test-out.txt
133
+ grep -qxF '0 failures, 0 errors.' test-out.txt
128
134
129
135
# Compiler Tests
130
136
compiler-test :
@@ -197,4 +203,6 @@ jobs:
197
203
run : ./script/uberjar
198
204
199
205
- name : Run tests
200
- run : clojure -A:cli.test.run
206
+ run : |
207
+ clojure -A:cli.test.run | tee test-out.txt
208
+ grep -qxF '0 failures, 0 errors.' test-out.txt
You can’t perform that action at this time.
0 commit comments