Initial commit

This commit is contained in:
zhongjin
2020-06-15 10:58:47 +08:00
commit 4f1dfe7564
8590 changed files with 1516878 additions and 0 deletions

19
script/ci/runParallelTests.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
# BACKEND PARALLEL
script/ci/generateSpecFull.sh || exit 1
# CLEANER
script/ci/cleaner.sh || exit 1
# WRAPPER
script/ci/wrapper.sh $1 || exit 1
# TESTS
time parallel -j $1 -a parallel_tests/specfull.txt 'script/ci/executor.sh {} {%} {#}' || exit 1
# SECOND TRY
script/ci/secondTry.sh || exit 1
# REPORTER
script/ci/reporter.sh || exit 1