mirror of
https://github.com/jekyll/jekyll.git
synced 2026-01-31 09:48:30 -05:00
17 lines
221 B
Bash
Executable File
17 lines
221 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
parallelize_tests() {
|
|
ls -1 script/{test,cucumber,proof} | xargs -P 3 -L 1 /bin/bash
|
|
}
|
|
|
|
serialize_tests() {
|
|
script/proof
|
|
script/test
|
|
script/cucumber
|
|
}
|
|
|
|
script/branding
|
|
time parallelize_tests
|