jekyll/script/cibuild

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